Home
last modified time | relevance | path

Searched refs:window_info_ (Results 1 – 7 of 7) sorted by relevance

/third_party/cef/libcef/browser/native/
Dbrowser_platform_delegate_native_win.cc172 has_frame_ = !(window_info_.style & WS_CHILD); in CreateHostWindow()
174 std::wstring windowName(CefString(&window_info_.window_name)); in CreateHostWindow()
177 CreateWindowEx(window_info_.ex_style, GetWndClass(), windowName.c_str(), in CreateHostWindow()
178 window_info_.style, window_info_.bounds.x, in CreateHostWindow()
179 window_info_.bounds.y, window_info_.bounds.width, in CreateHostWindow()
180 window_info_.bounds.height, window_info_.parent_window, in CreateHostWindow()
181 window_info_.menu, ::GetModuleHandle(NULL), this); in CreateHostWindow()
185 DCHECK(window_info_.window); in CreateHostWindow()
186 if (!window_info_.window) in CreateHostWindow()
205 enable_child_window_dpi_message_func(window_info_.window, TRUE); in CreateHostWindow()
[all …]
Dbrowser_platform_delegate_native_linux.cc51 if (window_info_.bounds.width == 0) in CreateHostWindow()
52 window_info_.bounds.width = 800; in CreateHostWindow()
53 if (window_info_.bounds.height == 0) in CreateHostWindow()
54 window_info_.bounds.height = 600; in CreateHostWindow()
56 gfx::Rect rect(window_info_.bounds.x, window_info_.bounds.y, in CreateHostWindow()
57 window_info_.bounds.width, window_info_.bounds.height); in CreateHostWindow()
63 if (window_info_.parent_window != kNullWindowHandle) { in CreateHostWindow()
64 parent_window = static_cast<x11::Window>(window_info_.parent_window); in CreateHostWindow()
71 CefString(&window_info_.window_name).ToString()); in CreateHostWindow()
73 window_info_.window = in CreateHostWindow()
[all …]
Dbrowser_platform_delegate_native_mac.mm168 CAST_CEF_WINDOW_HANDLE_TO_NSVIEW(window_info_.parent_view);
169 NSRect contentRect = {{static_cast<CGFloat>(window_info_.bounds.x),
170 static_cast<CGFloat>(window_info_.bounds.y)},
171 {static_cast<CGFloat>(window_info_.bounds.width),
172 static_cast<CGFloat>(window_info_.bounds.height)}};
177 {static_cast<CGFloat>(window_info_.bounds.x),
178 screen_rect.size.height - static_cast<CGFloat>(window_info_.bounds.y)},
179 {static_cast<CGFloat>(window_info_.bounds.width),
180 static_cast<CGFloat>(window_info_.bounds.height)}};
204 window_info_.parent_view = parentView;
[all …]
Dbrowser_platform_delegate_native.h48 const CefWindowInfo& window_info() const { return window_info_; } in window_info()
66 CefWindowInfo window_info_; variable
Dbrowser_platform_delegate_native.cc16 : window_info_(window_info), in CefBrowserPlatformDelegateNative()
/third_party/cef/libcef/browser/
Dbrowser_host_create.cc23 : window_info_(windowInfo), in CreateBrowserHelper()
31 CefBrowserHost::CreateBrowserSync(window_info_, client_, url_, settings_, in Run()
35 CefWindowInfo window_info_; member in __anona017d86e0111::CreateBrowserHelper
/third_party/cef/libcef/browser/alloy/
Dalloy_browser_host_impl.cc70 window_info_(windowInfo), in ShowDevToolsHelper()
76 CefWindowInfo window_info_; member in __anon71a6cc5c0111::ShowDevToolsHelper
83 helper->browser_->ShowDevTools(helper->window_info_, helper->client_, in ShowDevToolsWithHelper()