Add ::IID() methods to these interfaces...
This commit is contained in:
Родитель
eda401b85b
Коммит
6a7de11a8b
|
@ -31,6 +31,8 @@
|
|||
|
||||
struct nsIHttpURL : public nsISupports
|
||||
{
|
||||
static const nsIID& IID() { static nsIID iid = NS_IHTTPURL_IID; return iid; }
|
||||
|
||||
/**
|
||||
* Parse the mime header into the url struct.
|
||||
* This method is intended to be used when an HTML META tag is encoutered
|
||||
|
|
|
@ -57,6 +57,7 @@ typedef enum {
|
|||
// Defining attributes of a url's load behavior.
|
||||
class nsILoadAttribs : public nsISupports {
|
||||
public:
|
||||
static const nsIID& IID() { static nsIID iid = NS_ILOAD_ATTRIBS_IID; return iid; }
|
||||
// Copy the state of another nsILoadAttribs instance.
|
||||
NS_IMETHOD Clone(nsILoadAttribs* aLoadAttribs) = 0;
|
||||
|
||||
|
|
|
@ -50,6 +50,7 @@ struct nsStreamBindingInfo {
|
|||
*/
|
||||
class nsIStreamListener : public nsIStreamObserver {
|
||||
public:
|
||||
static const nsIID& IID() { static nsIID iid = NS_ISTREAMLISTENER_IID; return iid; }
|
||||
/**
|
||||
* Return information regarding the current URL load.<BR>
|
||||
* The info structure that is passed in is filled out and returned
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
|
||||
class nsITransport : public nsIStreamListener {
|
||||
public:
|
||||
static const nsIID& IID() { static nsIID iid = NS_ITRANSPORT_IID; return iid; }
|
||||
|
||||
/** Accessors */
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче