зеркало из https://github.com/mozilla/pjs.git
Add GetIID()'s to interfaces.
This commit is contained in:
Родитель
6e29b90b9a
Коммит
e508ce5686
|
@ -59,6 +59,7 @@ class nsIContentSink;
|
|||
class nsIDTD : public nsISupports {
|
||||
public:
|
||||
|
||||
static const nsIID& GetIID() { static nsIID iid = NS_IDTD_IID; return iid; }
|
||||
|
||||
/**
|
||||
* Default constructor
|
||||
|
|
|
@ -71,6 +71,9 @@
|
|||
|
||||
class nsIHTMLContentSink : public nsIContentSink {
|
||||
public:
|
||||
|
||||
static const nsIID& GetIID() { static nsIID iid = NS_IHTML_CONTENT_SINK_IID; return iid; }
|
||||
|
||||
/**
|
||||
* This method gets called by the parser when it encounters
|
||||
* a title tag and wants to set the document title in the sink.
|
||||
|
|
|
@ -98,6 +98,8 @@ public:
|
|||
class nsIParser : public nsISupports {
|
||||
public:
|
||||
|
||||
static const nsIID& GetIID() { static nsIID iid = NS_IPARSER_IID; return iid; }
|
||||
|
||||
/**
|
||||
* Call this method if you have a DTD that you want to share with the parser.
|
||||
* Registered DTD's get remembered until the system shuts down.
|
||||
|
|
|
@ -59,6 +59,7 @@ class nsIContentSink;
|
|||
class nsIDTD : public nsISupports {
|
||||
public:
|
||||
|
||||
static const nsIID& GetIID() { static nsIID iid = NS_IDTD_IID; return iid; }
|
||||
|
||||
/**
|
||||
* Default constructor
|
||||
|
|
|
@ -71,6 +71,9 @@
|
|||
|
||||
class nsIHTMLContentSink : public nsIContentSink {
|
||||
public:
|
||||
|
||||
static const nsIID& GetIID() { static nsIID iid = NS_IHTML_CONTENT_SINK_IID; return iid; }
|
||||
|
||||
/**
|
||||
* This method gets called by the parser when it encounters
|
||||
* a title tag and wants to set the document title in the sink.
|
||||
|
|
|
@ -98,6 +98,8 @@ public:
|
|||
class nsIParser : public nsISupports {
|
||||
public:
|
||||
|
||||
static const nsIID& GetIID() { static nsIID iid = NS_IPARSER_IID; return iid; }
|
||||
|
||||
/**
|
||||
* Call this method if you have a DTD that you want to share with the parser.
|
||||
* Registered DTD's get remembered until the system shuts down.
|
||||
|
|
Загрузка…
Ссылка в новой задаче