mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 07:42:04 +00:00
adding an nsILoadGroup parameter to nsIDocumentLoaderFactory::CreateBlankDocument. bug 88229 r=jst,rpotts
This commit is contained in:
parent
ada53eeca0
commit
ad375ab3a6
@ -95,7 +95,8 @@ nsPluginDocLoaderFactory::CreateInstanceForDocument(nsISupports* aContainer,
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsPluginDocLoaderFactory::CreateBlankDocument(nsIDocument **_retval) {
|
||||
nsPluginDocLoaderFactory::CreateBlankDocument(nsILoadGroup *aLoadGroup,
|
||||
nsIDocument **_retval) {
|
||||
NS_NOTREACHED("how'd I get here?");
|
||||
return NS_ERROR_FAILURE;
|
||||
}
|
||||
|
@ -57,5 +57,5 @@ interface nsIDocumentLoaderFactory : nsISupports {
|
||||
in nsIDocument aDocument,
|
||||
in string aCommand);
|
||||
|
||||
nsIDocument createBlankDocument();
|
||||
nsIDocument createBlankDocument(in nsILoadGroup aLoadGroup);
|
||||
};
|
||||
|
@ -1498,7 +1498,8 @@ nsDirectoryViewerFactory::CreateInstanceForDocument(nsISupports* aContainer,
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsDirectoryViewerFactory::CreateBlankDocument(nsIDocument **_retval) {
|
||||
nsDirectoryViewerFactory::CreateBlankDocument(nsILoadGroup *aLoadGroup,
|
||||
nsIDocument **_retval) {
|
||||
|
||||
NS_NOTYETIMPLEMENTED("didn't expect to get here");
|
||||
return NS_ERROR_NOT_IMPLEMENTED;
|
||||
|
Loading…
Reference in New Issue
Block a user