Home
last modified time | relevance | path

Searched refs:browser_view (Results 1 – 25 of 36) sorted by relevance

12

/third_party/cef/libcef_dll/ctocpp/views/
Dbrowser_view_delegate_ctocpp.cc26 CefRefPtr<CefBrowserView> browser_view, in OnBrowserCreated() argument
37 DCHECK(browser_view.get()); in OnBrowserCreated()
38 if (!browser_view.get()) in OnBrowserCreated()
46 _struct->on_browser_created(_struct, CefBrowserViewCppToC::Wrap(browser_view), in OnBrowserCreated()
52 CefRefPtr<CefBrowserView> browser_view, in OnBrowserDestroyed() argument
63 DCHECK(browser_view.get()); in OnBrowserDestroyed()
64 if (!browser_view.get()) in OnBrowserDestroyed()
73 CefBrowserViewCppToC::Wrap(browser_view), in OnBrowserDestroyed()
80 CefRefPtr<CefBrowserView> browser_view, in GetDelegateForPopupBrowserView() argument
93 DCHECK(browser_view.get()); in GetDelegateForPopupBrowserView()
[all …]
Dbrowser_view_delegate_ctocpp.h42 void OnBrowserCreated(CefRefPtr<CefBrowserView> browser_view,
44 void OnBrowserDestroyed(CefRefPtr<CefBrowserView> browser_view,
47 CefRefPtr<CefBrowserView> browser_view,
51 bool OnPopupBrowserViewCreated(CefRefPtr<CefBrowserView> browser_view,
/third_party/cef/libcef_dll/cpptoc/views/
Dbrowser_view_delegate_cpptoc.cc28 cef_browser_view_t* browser_view, in browser_view_delegate_on_browser_created() argument
38 DCHECK(browser_view); in browser_view_delegate_on_browser_created()
39 if (!browser_view) in browser_view_delegate_on_browser_created()
48 CefBrowserViewCToCpp::Wrap(browser_view), in browser_view_delegate_on_browser_created()
54 cef_browser_view_t* browser_view, in browser_view_delegate_on_browser_destroyed() argument
64 DCHECK(browser_view); in browser_view_delegate_on_browser_destroyed()
65 if (!browser_view) in browser_view_delegate_on_browser_destroyed()
74 CefBrowserViewCToCpp::Wrap(browser_view), in browser_view_delegate_on_browser_destroyed()
81 cef_browser_view_t* browser_view, in browser_view_delegate_get_delegate_for_popup_browser_view() argument
93 DCHECK(browser_view); in browser_view_delegate_get_delegate_for_popup_browser_view()
[all …]
/third_party/cef/libcef/browser/chrome/views/
Dbrowser_platform_delegate_chrome_views.cc17 explicit PopupWindowDelegate(CefRefPtr<CefBrowserView> browser_view) in PopupWindowDelegate() argument
18 : browser_view_(browser_view) {} in PopupWindowDelegate()
50 CefRefPtr<CefBrowserViewImpl> browser_view) in CefBrowserPlatformDelegateChromeViews() argument
52 if (browser_view) in CefBrowserPlatformDelegateChromeViews()
53 SetBrowserView(browser_view); in CefBrowserPlatformDelegateChromeViews()
57 CefRefPtr<CefBrowserViewImpl> browser_view) { in SetBrowserView() argument
59 DCHECK(browser_view); in SetBrowserView()
60 browser_view_ = browser_view; in SetBrowserView()
Dchrome_browser_frame.cc11 void ChromeBrowserFrame::Init(BrowserView* browser_view, in Init() argument
13 DCHECK(browser_view); in Init()
20 InitBrowserView(browser_view); in Init()
23 browser_view->InitBrowser(std::move(browser)); in Init()
Dtoolbar_view_impl.cc11 BrowserView* browser_view, in Create() argument
15 new CefToolbarViewImpl(delegate, browser, browser_view, display_mode); in Create()
26 BrowserView* browser_view, in CefToolbarViewImpl() argument
30 browser_view_(browser_view), in CefToolbarViewImpl()
Dchrome_browser_view.cc17 CefRefPtr<CefBrowserView> browser_view) { in InitBrowser() argument
29 auto view_impl = static_cast<CefBrowserViewImpl*>(browser_view.get()); in InitBrowser()
74 BrowserView* browser_view) { in OverrideCreateToolbar() argument
89 cef_toolbar_ = CefToolbarViewImpl::Create(nullptr, browser, browser_view, in OverrideCreateToolbar()
Dtoolbar_view_view.cc9 BrowserView* browser_view, in CefToolbarViewView() argument
11 : ParentClass(cef_delegate, browser, browser_view, display_mode) {} in CefToolbarViewView()
Dbrowser_platform_delegate_chrome_views.h17 CefRefPtr<CefBrowserViewImpl> browser_view);
40 void SetBrowserView(CefRefPtr<CefBrowserViewImpl> browser_view);
Dtoolbar_view_impl.h29 BrowserView* browser_view,
43 BrowserView* browser_view,
Dchrome_browser_view.h40 CefRefPtr<CefBrowserView> browser_view);
51 BrowserView* browser_view) override;
/third_party/cef/libcef/browser/views/
Dbrowser_view_impl.cc64 CefRefPtr<CefBrowserViewImpl> browser_view = new CefBrowserViewImpl(delegate); in Create() local
65 browser_view->SetPendingBrowserCreateParams(client, url, settings, extra_info, in Create()
67 browser_view->Initialize(); in Create()
68 browser_view->SetDefaults(settings); in Create()
69 return browser_view; in Create()
78 CefRefPtr<CefBrowserViewImpl> browser_view = new CefBrowserViewImpl(delegate); in CreateForPopup() local
79 browser_view->Initialize(); in CreateForPopup()
80 browser_view->SetDefaults(settings); in CreateForPopup()
81 return browser_view; in CreateForPopup()
196 pending_browser_create_params_->browser_view = this; in OnBrowserViewAdded()
Dbrowser_platform_delegate_views.cc23 explicit PopupWindowDelegate(CefRefPtr<CefBrowserView> browser_view) in PopupWindowDelegate() argument
24 : browser_view_(browser_view) {} in PopupWindowDelegate()
56 CefRefPtr<CefBrowserViewImpl> browser_view) in CefBrowserPlatformDelegateViews() argument
58 if (browser_view) in CefBrowserPlatformDelegateViews()
59 SetBrowserView(browser_view); in CefBrowserPlatformDelegateViews()
64 CefRefPtr<CefBrowserViewImpl> browser_view) { in SetBrowserView() argument
66 DCHECK(browser_view); in SetBrowserView()
67 browser_view_ = browser_view; in SetBrowserView()
Dmenu_runner_views.cc10 CefMenuRunnerViews::CefMenuRunnerViews(CefBrowserViewImpl* browser_view) in CefMenuRunnerViews() argument
11 : browser_view_(browser_view) {} in CefMenuRunnerViews()
/third_party/cef/include/capi/views/
Dcef_browser_view_delegate_capi.h72 struct _cef_browser_view_t* browser_view,
83 struct _cef_browser_view_t* browser_view,
96 struct _cef_browser_view_t* browser_view,
112 struct _cef_browser_view_t* browser_view,
/third_party/cef/include/views/
Dcef_browser_view_delegate.h64 virtual void OnBrowserCreated(CefRefPtr<CefBrowserView> browser_view, in OnBrowserCreated() argument
74 virtual void OnBrowserDestroyed(CefRefPtr<CefBrowserView> browser_view, in OnBrowserDestroyed() argument
86 CefRefPtr<CefBrowserView> browser_view, in GetDelegateForPopupBrowserView() argument
104 CefRefPtr<CefBrowserView> browser_view, in OnPopupBrowserViewCreated() argument
/third_party/cef/tests/cefsimple/
Dsimple_app.cc22 explicit SimpleWindowDelegate(CefRefPtr<CefBrowserView> browser_view) in SimpleWindowDelegate() argument
23 : browser_view_(browser_view) {} in SimpleWindowDelegate()
61 bool OnPopupBrowserViewCreated(CefRefPtr<CefBrowserView> browser_view, in OnPopupBrowserViewCreated() argument
109 CefRefPtr<CefBrowserView> browser_view = CefBrowserView::CreateBrowserView( in OnContextInitialized() local
114 CefWindow::CreateTopLevelWindow(new SimpleWindowDelegate(browser_view)); in OnContextInitialized()
Dsimple_handler.cc52 CefRefPtr<CefBrowserView> browser_view = in OnTitleChange() local
54 if (browser_view) { in OnTitleChange()
55 CefRefPtr<CefWindow> window = browser_view->GetWindow(); in OnTitleChange()
/third_party/cef/patch/patches/
Dchrome_runtime_views.patch43 BrowserFrame::BrowserFrame(BrowserView* browser_view)
47 - browser_view_(browser_view) {
53 + if (browser_view)
54 + InitBrowserView(browser_view);
57 +void BrowserFrame::InitBrowserView(BrowserView* browser_view) {
58 + browser_view_ = browser_view;
126 explicit BrowserFrame(BrowserView* browser_view);
127 + void InitBrowserView(BrowserView* browser_view);
131 diff --git chrome/browser/ui/views/frame/browser_view.cc chrome/browser/ui/views/frame/browser_view
133 --- chrome/browser/ui/views/frame/browser_view.cc
[all …]
/third_party/cef/tests/cefclient/browser/
Dbrowser_window_std_mac.mm55 NSView* browser_view = CAST_CEF_WINDOW_HANDLE_TO_NSVIEW(GetWindowHandle());
57 // Re-parent |browser_view| to |parent_handle|.
58 [browser_view removeFromSuperview];
59 [CAST_CEF_WINDOW_HANDLE_TO_NSVIEW(parent_handle) addSubview:browser_view];
62 [browser_view setFrameSize:size];
Dwindow_test_runner_views.cc21 CefRefPtr<CefBrowserView> browser_view = in GetWindow() local
23 DCHECK(browser_view.get()); in GetWindow()
25 CefRefPtr<CefWindow> window = browser_view->GetWindow(); in GetWindow()
Dviews_window.cc120 CefRefPtr<CefBrowserView> browser_view = CefBrowserView::CreateBrowserView( in Create() local
124 views_window->SetBrowserView(browser_view); in Create()
337 CefRefPtr<CefBrowserView> browser_view, in GetDelegateForPopupBrowserView() argument
356 CefRefPtr<CefBrowserView> browser_view, in OnPopupBrowserViewCreated() argument
762 CefRefPtr<CefBrowserView> browser_view) in ViewsWindow() argument
768 if (browser_view) in ViewsWindow()
769 SetBrowserView(browser_view); in ViewsWindow()
818 void ViewsWindow::SetBrowserView(CefRefPtr<CefBrowserView> browser_view) { in SetBrowserView() argument
820 DCHECK(browser_view); in SetBrowserView()
821 DCHECK(browser_view->IsValid()); in SetBrowserView()
[all …]
Dviews_window.h126 CefRefPtr<CefBrowserView> browser_view,
130 bool OnPopupBrowserViewCreated(CefRefPtr<CefBrowserView> browser_view,
185 ViewsWindow(Delegate* delegate, CefRefPtr<CefBrowserView> browser_view);
187 void SetBrowserView(CefRefPtr<CefBrowserView> browser_view);
/third_party/cef/tests/ceftests/
Dtest_handler.cc25 static void CreateBrowserWindow(CefRefPtr<CefBrowserView> browser_view, in CreateBrowserWindow() argument
28 new TestWindowDelegate(browser_view, "CefUnitTestViews " + title)); in CreateBrowserWindow()
54 TestWindowDelegate(CefRefPtr<CefBrowserView> browser_view, in TestWindowDelegate() argument
56 : browser_view_(browser_view), title_(title) {} in TestWindowDelegate()
72 bool OnPopupBrowserViewCreated(CefRefPtr<CefBrowserView> browser_view, in OnPopupBrowserViewCreated() argument
366 CefRefPtr<CefBrowserView> browser_view = CefBrowserView::CreateBrowserView( in CreateBrowser() local
371 TestWindowDelegate::CreateBrowserWindow(browser_view, std::string()); in CreateBrowser()
/third_party/cef/libcef/browser/
Dbrowser_platform_delegate_create.cc87 if (create_params.browser_view || in Create()
91 static_cast<CefBrowserViewImpl*>(create_params.browser_view.get())); in Create()
132 static_cast<CefBrowserViewImpl*>(create_params.browser_view.get())); in Create()

12