Home
last modified time | relevance | path

Searched refs:AlloyBrowserHostImpl (Results 1 – 25 of 65) sorted by relevance

123

/third_party/cef/libcef/browser/alloy/
Dalloy_browser_host_impl.cc64 ShowDevToolsHelper(CefRefPtr<AlloyBrowserHostImpl> browser, in ShowDevToolsHelper()
75 CefRefPtr<AlloyBrowserHostImpl> browser_;
93 CefWidgetHostInterceptor(AlloyBrowserHostImpl* browser, in CefWidgetHostInterceptor()
126 AlloyBrowserHostImpl* const browser_;
139 CefRefPtr<AlloyBrowserHostImpl> AlloyBrowserHostImpl::Create( in Create()
171 CefRefPtr<AlloyBrowserHostImpl> browser = CreateInternal( in Create()
174 static_cast<AlloyBrowserHostImpl*>(create_params.devtools_opener.get()), in Create()
197 CefRefPtr<AlloyBrowserHostImpl> AlloyBrowserHostImpl::CreateInternal( in CreateInternal()
203 CefRefPtr<AlloyBrowserHostImpl> opener, in CreateInternal()
235 CefRefPtr<AlloyBrowserHostImpl> browser = new AlloyBrowserHostImpl( in CreateInternal()
[all …]
Dalloy_browser_host_impl.h50 class AlloyBrowserHostImpl : public CefBrowserHostBase,
60 ~AlloyBrowserHostImpl() override;
63 static CefRefPtr<AlloyBrowserHostImpl> Create(
67 static CefRefPtr<AlloyBrowserHostImpl> GetBrowserForHost(
70 static CefRefPtr<AlloyBrowserHostImpl> GetBrowserForHost(
73 static CefRefPtr<AlloyBrowserHostImpl> GetBrowserForContents(
76 static CefRefPtr<AlloyBrowserHostImpl> GetBrowserForGlobalId(
310 static CefRefPtr<AlloyBrowserHostImpl> CreateInternal(
316 CefRefPtr<AlloyBrowserHostImpl> opener,
322 AlloyBrowserHostImpl(
[all …]
Dalloy_dialog_util.cc18 CefRefPtr<AlloyBrowserHostImpl> browser = static_cast<AlloyBrowserHostImpl*>( in RunFileChooser()
/third_party/cef/libcef/browser/extensions/
Dmime_handler_view_guest_delegate.cc28 CefRefPtr<AlloyBrowserHostImpl> owner_browser = in OverrideWebContentsCreateParams()
29 AlloyBrowserHostImpl::GetBrowserForContents(owner_web_contents_); in OverrideWebContentsCreateParams()
44 CefRefPtr<AlloyBrowserHostImpl> owner_browser = in OnGuestAttached()
45 AlloyBrowserHostImpl::GetBrowserForContents(owner_web_contents_); in OnGuestAttached()
57 CefRefPtr<AlloyBrowserHostImpl> owner_browser = in OnGuestDetached()
58 AlloyBrowserHostImpl::GetBrowserForContents(owner_web_contents_); in OnGuestDetached()
68 CefRefPtr<AlloyBrowserHostImpl> owner_browser = in HandleContextMenu()
69 AlloyBrowserHostImpl::GetBrowserForContents(owner_web_contents_); in HandleContextMenu()
Dextension_function_details.cc149 CefRefPtr<AlloyBrowserHostImpl> CefExtensionFunctionDetails::GetSenderBrowser() in GetSenderBrowser()
153 return AlloyBrowserHostImpl::GetBrowserForContents(web_contents); in GetSenderBrowser()
157 CefRefPtr<AlloyBrowserHostImpl> CefExtensionFunctionDetails::GetCurrentBrowser() in GetCurrentBrowser()
160 CefRefPtr<AlloyBrowserHostImpl> browser = GetSenderBrowser(); in GetCurrentBrowser()
169 CefRefPtr<AlloyBrowserHostImpl> active_browser_impl = in GetCurrentBrowser()
170 static_cast<AlloyBrowserHostImpl*>(active_browser.get()); in GetCurrentBrowser()
193 CefRefPtr<AlloyBrowserHostImpl> target) const { in CanAccessBrowser()
197 CefRefPtr<AlloyBrowserHostImpl> browser = GetSenderBrowser(); in CanAccessBrowser()
216 CefRefPtr<AlloyBrowserHostImpl>
223 CefRefPtr<AlloyBrowserHostImpl> browser; in GetBrowserForTabIdFirstTime()
[all …]
Dextension_function_details.h43 CefRefPtr<AlloyBrowserHostImpl> GetSenderBrowser() const;
64 CefRefPtr<AlloyBrowserHostImpl> GetCurrentBrowser() const;
69 bool CanAccessBrowser(CefRefPtr<AlloyBrowserHostImpl> target) const;
77 CefRefPtr<AlloyBrowserHostImpl> GetBrowserForTabIdFirstTime(
86 CefRefPtr<AlloyBrowserHostImpl> GetBrowserForTabIdAgain(
121 CefRefPtr<AlloyBrowserHostImpl> new_browser,
Dextension_background_host.h13 class AlloyBrowserHostImpl; variable
26 CefExtensionBackgroundHost(AlloyBrowserHostImpl* browser,
Dbrowser_extensions_util.h23 class AlloyBrowserHostImpl; variable
59 CefRefPtr<AlloyBrowserHostImpl> GetBrowserForTabId(
Dbrowser_extensions_util.cc131 CefRefPtr<AlloyBrowserHostImpl> GetBrowserForTabId( in GetBrowserForTabId()
145 CefRefPtr<AlloyBrowserHostImpl> current_browser = in GetBrowserForTabId()
146 static_cast<AlloyBrowserHostImpl*>(browser_info->browser().get()); in GetBrowserForTabId()
Dextension_view_host.h14 class AlloyBrowserHostImpl; variable
29 CefExtensionViewHost(AlloyBrowserHostImpl* browser,
Dextension_host_delegate.h10 class AlloyBrowserHostImpl; variable
16 explicit CefExtensionHostDelegate(AlloyBrowserHostImpl* browser);
Dbrowser_platform_delegate_background.cc32 base::BindOnce(&AlloyBrowserHostImpl::WindowDestroyed, in CloseHostWindow()
33 static_cast<AlloyBrowserHostImpl*>(browser_))); in CloseHostWindow()
/third_party/cef/libcef/browser/
Ddownload_manager_delegate.h19 class AlloyBrowserHostImpl; variable
54 AlloyBrowserHostImpl* GetOrAssociateBrowser(download::DownloadItem* item);
55 AlloyBrowserHostImpl* GetBrowser(download::DownloadItem* item);
64 std::map<download::DownloadItem*, AlloyBrowserHostImpl*>;
Ddownload_manager_delegate.cc36 CefRefPtr<AlloyBrowserHostImpl> browser) { in GetDownloadHandler()
134 CefRefPtr<AlloyBrowserHostImpl> browser = in ChooseDownloadPath()
135 AlloyBrowserHostImpl::GetBrowserForContents(web_contents); in ChooseDownloadPath()
287 CefRefPtr<AlloyBrowserHostImpl> browser = GetBrowser(download); in OnDownloadUpdated()
307 AlloyBrowserHostImpl* browser = nullptr; in OnDownloadDestroyed()
337 CefRefPtr<AlloyBrowserHostImpl> browser = GetOrAssociateBrowser(item); in OnDownloadCreated()
376 CefRefPtr<AlloyBrowserHostImpl> browser = GetOrAssociateBrowser(item); in DetermineDownloadTarget()
429 AlloyBrowserHostImpl* CefDownloadManagerDelegate::GetOrAssociateBrowser( in GetOrAssociateBrowser()
435 AlloyBrowserHostImpl* browser = nullptr; in GetOrAssociateBrowser()
439 browser = AlloyBrowserHostImpl::GetBrowserForContents(contents).get(); in GetOrAssociateBrowser()
[all …]
Daudio_capturer.h21 class AlloyBrowserHostImpl; variable
26 CefRefPtr<AlloyBrowserHostImpl> browser,
43 CefRefPtr<AlloyBrowserHostImpl> browser_;
Djavascript_dialog_manager.h18 class AlloyBrowserHostImpl; variable
23 CefJavaScriptDialogManager(AlloyBrowserHostImpl* browser,
57 AlloyBrowserHostImpl* browser_;
Dmenu_manager.h22 class AlloyBrowserHostImpl; variable
28 CefMenuManager(AlloyBrowserHostImpl* browser,
67 AlloyBrowserHostImpl* browser_;
Dfile_dialog_manager.h26 class AlloyBrowserHostImpl; variable
31 CefFileDialogManager(AlloyBrowserHostImpl* browser,
94 AlloyBrowserHostImpl* browser_;
Dmenu_runner.h15 class AlloyBrowserHostImpl; variable
24 virtual bool RunContextMenu(AlloyBrowserHostImpl* browser,
Dfile_dialog_runner.h16 class AlloyBrowserHostImpl; variable
40 virtual void Run(AlloyBrowserHostImpl* browser,
Djavascript_dialog_runner.h13 class AlloyBrowserHostImpl; variable
26 virtual void Run(AlloyBrowserHostImpl* browser,
/third_party/cef/libcef/browser/devtools/
Ddevtools_file_manager.h20 class AlloyBrowserHostImpl; variable
28 CefDevToolsFileManager(AlloyBrowserHostImpl* browser_impl,
74 AlloyBrowserHostImpl* browser_impl_;
Ddevtools_frontend.h47 AlloyBrowserHostImpl* inspected_browser,
68 CefDevToolsFrontend(AlloyBrowserHostImpl* frontend_browser,
96 CefRefPtr<AlloyBrowserHostImpl> frontend_browser_;
/third_party/cef/libcef/browser/osr/
Dweb_contents_view_osr.cc158 CefRefPtr<AlloyBrowserHostImpl> browser = GetBrowser(); in StartDragging()
170 CefRefPtr<AlloyBrowserHostImpl> browser = GetBrowser(); in UpdateDragCursor()
183 AlloyBrowserHostImpl* CefWebContentsViewOSR::GetBrowser() const { in GetBrowser()
Dweb_contents_view_osr.h19 class AlloyBrowserHostImpl; variable
84 AlloyBrowserHostImpl* GetBrowser() const;

123