зеркало из https://github.com/mozilla/gecko-dev.git
Revised LoadURL to take an nsIStreamListener
This commit is contained in:
Родитель
422e37717f
Коммит
431503c3c6
|
@ -21,9 +21,10 @@
|
|||
#include "nsIWidget.h"
|
||||
#include "nsRect.h"
|
||||
class nsIDocument;
|
||||
class nsString;
|
||||
class nsIScriptContext;
|
||||
class nsIPostData;
|
||||
class nsIScriptContext;
|
||||
class nsIStreamListener;
|
||||
class nsString;
|
||||
|
||||
// Interface to the web widget. The web widget is a container for web
|
||||
// content.
|
||||
|
@ -41,10 +42,11 @@ public:
|
|||
|
||||
virtual void Hide() = 0;
|
||||
|
||||
NS_IMETHOD LoadURL(const nsString& aURLSpec, nsIPostData* aPostData = 0) = 0;
|
||||
NS_IMETHOD LoadURL(const nsString& aURLSpec,
|
||||
nsIStreamListener* aListener,
|
||||
nsIPostData* aPostData = 0) = 0;
|
||||
|
||||
virtual nsIWidget* GetWWWindow() = 0;
|
||||
|
||||
};
|
||||
|
||||
#endif /* nsIDocumentWidget_h___ */
|
||||
|
|
Загрузка…
Ссылка в новой задаче