Home
last modified time | relevance | path

Searched refs:CefBrowserImpl (Results 1 – 11 of 11) sorted by relevance

/third_party/cef/libcef/renderer/
Dbrowser_impl.cc37 CefRefPtr<CefBrowserImpl> CefBrowserImpl::GetBrowserForView( in GetBrowserForView()
43 CefRefPtr<CefBrowserImpl> CefBrowserImpl::GetBrowserForMainFrame( in GetBrowserForMainFrame()
51 bool CefBrowserImpl::IsValid() { in IsValid()
56 CefRefPtr<CefBrowserHost> CefBrowserImpl::GetHost() { in GetHost()
61 bool CefBrowserImpl::CanGoBack() { in CanGoBack()
67 void CefBrowserImpl::GoBack() { in GoBack()
73 bool CefBrowserImpl::CanGoForward() { in CanGoForward()
79 void CefBrowserImpl::GoForward() { in GoForward()
85 bool CefBrowserImpl::IsLoading() { in IsLoading()
96 void CefBrowserImpl::Reload() { in Reload()
[all …]
Dbrowser_impl.h38 class CefBrowserImpl : public CefBrowser, public blink::WebViewObserver {
41 static CefRefPtr<CefBrowserImpl> GetBrowserForView(content::RenderView* view);
43 static CefRefPtr<CefBrowserImpl> GetBrowserForMainFrame(
69 CefBrowserImpl(content::RenderView* render_view,
74 CefBrowserImpl(const CefBrowserImpl&) = delete;
75 CefBrowserImpl& operator=(const CefBrowserImpl&) = delete;
77 ~CefBrowserImpl() override;
130 IMPLEMENT_REFCOUNTING(CefBrowserImpl);
Drender_frame_observer.cc46 CefRefPtr<CefBrowserImpl> browserPtr = in DidCommitProvisionalLoad()
47 CefBrowserImpl::GetBrowserForMainFrame(frame->Top()); in DidCommitProvisionalLoad()
84 CefRefPtr<CefBrowserImpl> browserPtr = in FocusedElementChanged()
85 CefBrowserImpl::GetBrowserForMainFrame(frame->Top()); in FocusedElementChanged()
126 CefRefPtr<CefBrowserImpl> browserPtr = in DidCreateScriptContext()
127 CefBrowserImpl::GetBrowserForMainFrame(frame->Top()); in DidCreateScriptContext()
158 CefRefPtr<CefBrowserImpl> browserPtr = in WillReleaseScriptContext()
159 CefBrowserImpl::GetBrowserForMainFrame(frame->Top()); in WillReleaseScriptContext()
219 CefRefPtr<CefBrowserImpl> browserPtr = in OnLoadStart()
220 CefBrowserImpl::GetBrowserForMainFrame(frame->Top()); in OnLoadStart()
[all …]
Drender_manager.h34 class CefBrowserImpl; variable
66 CefRefPtr<CefBrowserImpl> GetBrowserForView(content::RenderView* view);
69 CefRefPtr<CefBrowserImpl> GetBrowserForMainFrame(blink::WebFrame* frame);
81 friend class CefBrowserImpl;
97 CefRefPtr<CefBrowserImpl> MaybeCreateBrowser(
104 void OnBrowserDestroyed(CefBrowserImpl* browser);
113 using BrowserMap = std::map<content::RenderView*, CefRefPtr<CefBrowserImpl>>;
Ddom_document_impl.h17 class CefBrowserImpl; variable
21 CefDOMDocumentImpl(CefBrowserImpl* browser, blink::WebLocalFrame* frame);
40 CefBrowserImpl* GetBrowser() { return browser_; } in GetBrowser()
54 CefBrowserImpl* browser_;
Drender_manager.cc158 CefRefPtr<CefBrowserImpl> CefRenderManager::GetBrowserForView( in GetBrowserForView()
166 CefRefPtr<CefBrowserImpl> CefRenderManager::GetBrowserForMainFrame( in GetBrowserForMainFrame()
283 CefRefPtr<CefBrowserImpl> CefRenderManager::MaybeCreateBrowser( in MaybeCreateBrowser()
338 browser = new CefBrowserImpl(render_view, params->browser_id, in MaybeCreateBrowser()
367 void CefRenderManager::OnBrowserDestroyed(CefBrowserImpl* browser) { in OnBrowserDestroyed()
Dframe_impl.h35 class CefBrowserImpl; variable
42 CefFrameImpl(CefBrowserImpl* browser,
142 CefBrowserImpl* browser_;
Ddom_document_impl.cc26 CefDOMDocumentImpl::CefDOMDocumentImpl(CefBrowserImpl* browser, in CefDOMDocumentImpl()
Dframe_impl.cc64 CefFrameImpl::CefFrameImpl(CefBrowserImpl* browser, in CefFrameImpl()
Dv8_impl.cc971 browser = CefBrowserImpl::GetBrowserForMainFrame(webframe->Top()); in GetBrowser()
982 CefRefPtr<CefBrowserImpl> browser = in GetFrame()
983 CefBrowserImpl::GetBrowserForMainFrame(webframe->Top()); in GetFrame()
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch23913 @@ -72,7 +72,6 @@ void CefBrowserImpl::GoBack() {
23915 bool CefBrowserImpl::CanGoForward() {
23921 @@ -82,6 +81,22 @@ void CefBrowserImpl::GoForward() {
23925 +bool CefBrowserImpl::CanGoBackOrForward(int num_steps) {
23931 +void CefBrowserImpl::GoBackOrForward(int num_steps) {
23937 +void CefBrowserImpl::DeleteHistory() {
23941 bool CefBrowserImpl::IsLoading() {
23944 @@ -263,6 +278,15 @@ void CefBrowserImpl::GetFrameNames(std::vector<CefString>& names) {
23949 +CefBrowserImpl::GetPermissionRequestDelegate() {
23953 +CefRefPtr<CefGeolocationAcess> CefBrowserImpl::GetGeolocationPermissions() {
[all …]