mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-11 18:24:02 +00:00
Not in the build!
This commit is contained in:
parent
5300b8e34e
commit
bcc53826a3
@ -36,6 +36,9 @@
|
||||
#include "nsIInterfaceRequestor.h"
|
||||
#include "nsIWebProgressListener.h"
|
||||
|
||||
#include <UModalDialogs.h>
|
||||
#include <LStream.h>
|
||||
|
||||
#include "ApplIDs.h"
|
||||
#include "CBrowserWindow.h"
|
||||
#include "CFindComponent.h"
|
||||
@ -302,6 +305,16 @@ NS_IMETHODIMP CBrowserShell::SetTopLevelWindow(nsIWebBrowserChrome * aTopLevelWi
|
||||
}
|
||||
|
||||
|
||||
NS_METHOD CBrowserShell::GetWebBrowser(nsIWebBrowser** aBrowser)
|
||||
{
|
||||
NS_ENSURE_ARG_POINTER(aBrowser);
|
||||
|
||||
*aBrowser = mWebBrowser;
|
||||
NS_IF_ADDREF(*aBrowser);
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
||||
//*****************************************************************************
|
||||
//*** CBrowserShell: Navigation
|
||||
//*****************************************************************************
|
||||
|
@ -23,6 +23,12 @@
|
||||
#ifndef __CBrowserShell__
|
||||
#define __CBrowserShell__
|
||||
|
||||
#include <LView.h>
|
||||
#include <LCommander.h>
|
||||
#include <LPeriodical.h>
|
||||
#include <LListener.h>
|
||||
#include <LString.h>
|
||||
|
||||
#include "nsIWebBrowser.h"
|
||||
#include "nsIBaseWindow.h"
|
||||
#include "nsIWebNavigation.h"
|
||||
@ -91,6 +97,7 @@ public:
|
||||
|
||||
// CBrowserShell
|
||||
NS_METHOD SetTopLevelWindow(nsIWebBrowserChrome * aTopLevelWindow);
|
||||
NS_METHOD GetWebBrowser(nsIWebBrowser** aBrowser);
|
||||
|
||||
Boolean CanGoBack();
|
||||
Boolean CanGoForward();
|
||||
|
Loading…
x
Reference in New Issue
Block a user