• Home
  • Raw
  • Download

Lines Matching full:browser

5 #include "libcef/browser/extensions/browser_extensions_util.h"
7 #include "libcef/browser/alloy/alloy_browser_host_impl.h"
8 #include "libcef/browser/browser_context.h"
9 #include "libcef/browser/browser_host_base.h"
10 #include "libcef/browser/browser_info_manager.h"
11 #include "libcef/browser/thread_util.h"
16 #include "chrome/browser/browser_process.h"
17 #include "chrome/browser/printing/print_preview_dialog_controller.h"
18 #include "content/browser/browser_plugin/browser_plugin_guest.h"
19 #include "content/browser/web_contents/web_contents_impl.h"
20 #include "content/public/browser/browser_context.h"
21 #include "content/public/browser/browser_plugin_guest_manager.h"
22 #include "content/public/browser/render_frame_host.h"
23 #include "content/public/browser/render_view_host.h"
24 #include "extensions/browser/extension_registry.h"
77 CefRefPtr<CefBrowserHostBase> browser = info->browser(); in GetOwnerBrowserForGlobalId() local
78 if (!browser.get()) { in GetOwnerBrowserForGlobalId()
79 LOG(WARNING) << "Found browser id " << info->browser_id() in GetOwnerBrowserForGlobalId()
80 << " but no browser object matching frame " in GetOwnerBrowserForGlobalId()
83 return browser; in GetOwnerBrowserForGlobalId()
95 CefRefPtr<CefBrowserHostBase> browser = in GetOwnerBrowserForHost() local
97 if (!browser.get() && ExtensionsEnabled()) { in GetOwnerBrowserForHost()
98 // Retrieve the owner browser, if any. in GetOwnerBrowserForHost()
102 browser = CefBrowserHostBase::GetBrowserForContents(owner); in GetOwnerBrowserForHost()
103 if (browser.get() && is_guest_view) in GetOwnerBrowserForHost()
107 return browser; in GetOwnerBrowserForHost()
116 CefRefPtr<CefBrowserHostBase> browser = in GetOwnerBrowserForHost() local
118 if (!browser.get() && ExtensionsEnabled()) { in GetOwnerBrowserForHost()
119 // Retrieve the owner browser, if any. in GetOwnerBrowserForHost()
123 browser = CefBrowserHostBase::GetBrowserForContents(owner); in GetOwnerBrowserForHost()
124 if (browser.get() && is_guest_view) in GetOwnerBrowserForHost()
128 return browser; in GetOwnerBrowserForHost()
146 static_cast<AlloyBrowserHostImpl*>(browser_info->browser().get()); in GetBrowserForTabId()
153 LOG(WARNING) << "Browser with tabId " << tab_id in GetBrowserForTabId()