/third_party/cef/libcef/browser/ |
D | browser_platform_delegate_create.cc | 74 const CefBrowserCreateParams& create_params) { in Create() argument 76 create_params.window_info && in Create() 77 create_params.window_info->windowless_rendering_enabled && in Create() 78 create_params.client && create_params.client->GetRenderHandler().get(); in Create() 80 &create_params.settings, is_windowless ? STATE_ENABLED : STATE_DISABLED); in Create() 87 if (create_params.browser_view || in Create() 88 create_params.popup_with_views_hosted_opener) { in Create() 91 static_cast<CefBrowserViewImpl*>(create_params.browser_view.get())); in Create() 98 if (create_params.window_info) { in Create() 100 CreateNativeDelegate(*create_params.window_info.get(), in Create() [all …]
|
D | browser_host_create.cc | 140 CefBrowserCreateParams create_params; in CreateBrowserSync() local 141 create_params.window_info.reset(new CefWindowInfo(windowInfo)); in CreateBrowserSync() 142 create_params.client = client; in CreateBrowserSync() 143 create_params.url = url; in CreateBrowserSync() 144 create_params.settings = settings; in CreateBrowserSync() 145 create_params.extra_info = extra_info; in CreateBrowserSync() 146 create_params.request_context = request_context; in CreateBrowserSync() 148 return CefBrowserHostBase::Create(create_params); in CreateBrowserSync() 153 CefBrowserCreateParams& create_params) { in Create() argument 155 auto browser = ChromeBrowserHostImpl::Create(create_params); in Create() [all …]
|
D | browser_info_manager.cc | 180 CefBrowserCreateParams create_params; in CanCreateWindow() local 183 create_params.popup_with_views_hosted_opener = true; in CanCreateWindow() 185 create_params.window_info = std::move(window_info); in CanCreateWindow() 188 create_params.settings = pending_popup->settings; in CanCreateWindow() 189 create_params.client = pending_popup->client; in CanCreateWindow() 190 create_params.extra_info = pending_popup->extra_info; in CanCreateWindow() 193 CefBrowserPlatformDelegate::Create(create_params); in CanCreateWindow()
|
D | browser_platform_delegate.h | 84 const CefBrowserCreateParams& create_params); 90 CefBrowserCreateParams& create_params,
|
D | browser_host_base.h | 115 CefBrowserCreateParams& create_params);
|
D | browser_platform_delegate.cc | 18 CefBrowserCreateParams& create_params, in CreateWebContents() argument
|
/third_party/cef/libcef/browser/extensions/ |
D | extension_function_details.cc | 359 CefBrowserCreateParams create_params; in OpenTab() local 360 create_params.url = url.spec(); in OpenTab() 361 create_params.request_context = request_context; in OpenTab() 362 create_params.window_info.reset(new CefWindowInfo); in OpenTab() 365 create_params.window_info->SetAsPopup(nullptr, CefString()); in OpenTab() 369 create_params.client = active_browser->GetClient(); in OpenTab() 370 create_params.settings = active_browser->settings(); in OpenTab() 375 active_browser.get(), index, create_params.url, in OpenTab() 376 active, *create_params.window_info, in OpenTab() 377 create_params.client, create_params.settings)) { in OpenTab() [all …]
|
D | extensions_browser_client.cc | 252 CefBrowserCreateParams create_params; in CreateBackgroundExtensionHost() local 253 create_params.url = url.spec(); in CreateBackgroundExtensionHost() 254 create_params.request_context = request_context; in CreateBackgroundExtensionHost() 258 cef_extension, create_params.url, in CreateBackgroundExtensionHost() 259 create_params.client, create_params.settings)) { in CreateBackgroundExtensionHost() 265 create_params.extension = extension; in CreateBackgroundExtensionHost() 266 create_params.extension_host_type = mojom::ViewType::kExtensionBackgroundPage; in CreateBackgroundExtensionHost() 271 AlloyBrowserHostImpl::Create(create_params); in CreateBackgroundExtensionHost()
|
/third_party/cef/libcef/browser/alloy/ |
D | browser_platform_delegate_alloy.cc | 47 CefBrowserCreateParams& create_params, in CreateWebContents() argument 55 create_params.request_context); in CreateWebContents() 61 if (!create_params.request_context) { in CreateWebContents() 63 create_params.request_context = request_context_impl.get(); in CreateWebContents() 67 if (extensions::ExtensionsEnabled() && !create_params.url.empty()) { in CreateWebContents() 68 GURL gurl = url_util::MakeGURL(create_params.url, /*fixup=*/true); in CreateWebContents() 69 if (!create_params.extension) { in CreateWebContents() 72 create_params.extension = in CreateWebContents() 75 if (create_params.extension) { in CreateWebContents() 76 if (create_params.extension_host_type == in CreateWebContents() [all …]
|
D | alloy_browser_host_impl.cc | 140 CefBrowserCreateParams& create_params) { in Create() argument 142 CefBrowserPlatformDelegate::Create(create_params); in Create() 145 const bool is_devtools_popup = !!create_params.devtools_opener; in Create() 150 create_params.extra_info); in Create() 156 platform_delegate->CreateWebContents(create_params, own_web_contents); in Create() 159 static_cast<CefRequestContextImpl*>(create_params.request_context.get()); in Create() 162 if (create_params.extension) { in Create() 165 cef_browser_context->GetExtension(create_params.extension->id()); in Create() 172 create_params.settings, create_params.client, web_contents, in Create() 174 static_cast<AlloyBrowserHostImpl*>(create_params.devtools_opener.get()), in Create() [all …]
|
D | browser_platform_delegate_alloy.h | 25 content::WebContents* CreateWebContents(CefBrowserCreateParams& create_params,
|
D | alloy_browser_host_impl.h | 64 CefBrowserCreateParams& create_params);
|
/third_party/cef/libcef/browser/chrome/ |
D | chrome_browser_delegate.cc | 29 const CefBrowserCreateParams& create_params) in ChromeBrowserDelegate() argument 30 : browser_(browser), create_params_(create_params) { in ChromeBrowserDelegate() 258 CefBrowserContext::FromBrowserContext(browser_->create_params().profile); in CreateBrowser() 290 CefBrowserCreateParams create_params; in Create() local 297 create_params = params->create_params_; in Create() 305 return std::make_unique<ChromeBrowserDelegate>(browser, create_params); in Create()
|
D | chrome_browser_host_impl.h | 27 DelegateCreateParams(const CefBrowserCreateParams& create_params) in DelegateCreateParams() argument 28 : create_params_(create_params) {} in DelegateCreateParams()
|
D | chrome_browser_delegate.h | 43 const CefBrowserCreateParams& create_params);
|
/third_party/node/tools/code_cache/ |
D | mkcodecache.cc | 51 Isolate::CreateParams create_params; local 52 create_params.array_buffer_allocator_shared.reset( 54 Isolate* isolate = Isolate::New(create_params);
|
/third_party/cef/libcef/browser/devtools/ |
D | devtools_frontend.cc | 253 CefBrowserCreateParams create_params; in Show() local 255 create_params.window_info.reset(new CefWindowInfo(windowInfo)); in Show() 256 create_params.client = client; in Show() 257 create_params.settings = new_settings; in Show() 258 create_params.devtools_opener = inspected_browser; in Show() 259 create_params.request_context = inspected_browser->GetRequestContext(); in Show() 260 create_params.extra_info = inspected_browser->browser_info()->extra_info(); in Show() 263 AlloyBrowserHostImpl::Create(create_params); in Show()
|
/third_party/cef/patch/patches/ |
D | web_contents_1257_1565.patch | 28 create_params.renderer_initiated_creation = !is_new_browsing_instance; 35 + &create_params.view, 36 + &create_params.delegate_view); 41 create_params.context = view_->GetNativeView();
|
D | chrome_browser_browser.patch | 250 const CreateParams& create_params() const { return create_params_; } 302 WebContents::Create(create_params);
|
/third_party/node/test/cctest/ |
D | test_platform.cc | 65 v8::Isolate::CreateParams create_params; in TEST_F() local 66 create_params.array_buffer_allocator = allocator.get(); in TEST_F() 75 v8::Isolate::Initialize(isolate, create_params); in TEST_F()
|
D | test_environment.cc | 599 v8::Isolate::CreateParams create_params; in TEST_F() local 600 create_params.array_buffer_allocator = allocator.get(); in TEST_F() 601 create_params.only_terminate_in_safe_scope = true; in TEST_F() 605 v8::Isolate::Initialize(isolate, create_params); in TEST_F()
|
/third_party/gstreamer/gstplugins_base/ext/gl/ |
D | gstgldownloadelement.c | 235 NvBufferCreateParams create_params = { in gst_memory_nvmm_init() local 247 if (NvBufferCreateEx (&nvmm->dmabuf_fd, &create_params)) { in gst_memory_nvmm_init()
|
/third_party/chromium/patch/ |
D | 0004-ohos-3.2-Beta5.patch | 5593 CefBrowserCreateParams& create_params) { 5596 auto browser = ChromeBrowserHostImpl::Create(create_params); 5601 auto browser = AlloyBrowserHostImpl::Create(create_params); 5685 &create_params.settings, is_windowless ? STATE_ENABLED : STATE_DISABLED); 5697 if (create_params.window_info) {
|
D | 0003-ohos-1115.patch | 16027 CefBrowserCreateParams create_params; 16031 create_params.popup_with_views_hosted_opener = true; 16034 create_params.window_info = std::move(window_info); 51108 create_params.renderer_initiated_creation = !is_new_browsing_instance; 51115 - &create_params.view, 51116 - &create_params.delegate_view); 51119 + &create_params.view, &create_params.delegate_view);
|