- Adding the nsIWebShellServices interface that will be used by external services to access the webshell.

- Also, adding a method to nsIDocumentLoader that maps a document ID into an nsIContentViewerContainer.
This commit is contained in:
nisheeth%netscape.com 1999-05-06 01:55:10 +00:00
Родитель 3dd935858e
Коммит 68ffaa366e
5 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -12,5 +12,6 @@ nsIDocumentViewer.h
nsILinkHandler.h nsILinkHandler.h
nsIThrobber.h nsIThrobber.h
nsIWebShell.h nsIWebShell.h
nsIWebShellServices.h
nsIClipboardCommands.h nsIClipboardCommands.h
nsweb.h nsweb.h

Просмотреть файл

@ -34,6 +34,7 @@ EXPORTS = \
nsILinkHandler.h \ nsILinkHandler.h \
nsIThrobber.h \ nsIThrobber.h \
nsIWebShell.h \ nsIWebShell.h \
nsIWebShellServices.h \
nsIClipboardCommands.h \ nsIClipboardCommands.h \
nsweb.h \ nsweb.h \
nsIDocStreamLoaderFactory.h \ nsIDocStreamLoaderFactory.h \

Просмотреть файл

@ -32,6 +32,7 @@ EXPORTS = \
nsILinkHandler.h \ nsILinkHandler.h \
nsIThrobber.h \ nsIThrobber.h \
nsIWebShell.h \ nsIWebShell.h \
nsIWebShellServices.h \
nsIClipboardCommands.h \ nsIClipboardCommands.h \
nsweb.h \ nsweb.h \
$(NULL) $(NULL)

Просмотреть файл

@ -103,6 +103,8 @@ public:
NS_IMETHOD SetContainer(nsIContentViewerContainer* aContainer) = 0; NS_IMETHOD SetContainer(nsIContentViewerContainer* aContainer) = 0;
NS_IMETHOD GetContainer(nsIContentViewerContainer** aResult) = 0; NS_IMETHOD GetContainer(nsIContentViewerContainer** aResult) = 0;
NS_IMETHOD GetContentViewerContainer(PRUint32 aDocumentID, nsIContentViewerContainer** aResult) = 0;
}; };
/* 057b04d0-0ccf-11d2-beba-00805f8a66dc */ /* 057b04d0-0ccf-11d2-beba-00805f8a66dc */

Просмотреть файл