mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 124.0.6367.0 (#1274542)
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
// Copyright 2024 The Chromium Authors
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
#include "libcef/renderer/extensions/extensions_renderer_api_provider.h"
|
||||
|
||||
#include "extensions/renderer/module_system.h"
|
||||
#include "extensions/renderer/script_context.h"
|
||||
|
||||
namespace extensions {
|
||||
|
||||
void CefExtensionsRendererAPIProvider::RegisterNativeHandlers(
|
||||
ModuleSystem* module_system,
|
||||
NativeExtensionBindingsSystem* bindings_system,
|
||||
V8SchemaRegistry* v8_schema_registry,
|
||||
ScriptContext* context) const {}
|
||||
|
||||
void CefExtensionsRendererAPIProvider::AddBindingsSystemHooks(
|
||||
Dispatcher* dispatcher,
|
||||
NativeExtensionBindingsSystem* bindings_system) const {}
|
||||
|
||||
void CefExtensionsRendererAPIProvider::PopulateSourceMap(
|
||||
ResourceBundleSourceMap* source_map) const {}
|
||||
|
||||
void CefExtensionsRendererAPIProvider::EnableCustomElementAllowlist() const {}
|
||||
|
||||
void CefExtensionsRendererAPIProvider::RequireWebViewModules(
|
||||
ScriptContext* context) const {
|
||||
context->module_system()->Require("extensionsWebViewElement");
|
||||
}
|
||||
|
||||
} // namespace extensions
|
Reference in New Issue
Block a user