зеркало из https://github.com/mozilla/pjs.git
Not in the build!
This commit is contained in:
Родитель
a9d800f249
Коммит
b63a49bcba
|
@ -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();
|
||||
|
|
Загрузка…
Ссылка в новой задаче