mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 110.0.5481.0 (#1084008)
This commit is contained in:
@ -57,7 +57,7 @@ class CefExtensionSystem : public ExtensionSystem {
|
||||
bool internal,
|
||||
CefRefPtr<CefRequestContext> loader_context,
|
||||
CefRefPtr<CefExtensionHandler> handler);
|
||||
void LoadExtension(std::unique_ptr<base::DictionaryValue> manifest,
|
||||
void LoadExtension(base::Value::Dict manifest,
|
||||
const base::FilePath& root_directory,
|
||||
bool internal,
|
||||
CefRefPtr<CefRequestContext> loader_context,
|
||||
@ -125,12 +125,12 @@ class CefExtensionSystem : public ExtensionSystem {
|
||||
|
||||
// Information about a registered component extension.
|
||||
struct ComponentExtensionInfo {
|
||||
ComponentExtensionInfo(const base::DictionaryValue* manifest,
|
||||
ComponentExtensionInfo(base::Value::Dict manifest,
|
||||
const base::FilePath& root_directory,
|
||||
bool internal);
|
||||
|
||||
// The parsed contents of the extensions's manifest file.
|
||||
const base::DictionaryValue* manifest;
|
||||
base::Value::Dict manifest;
|
||||
|
||||
// Directory where the extension is stored.
|
||||
base::FilePath root_directory;
|
||||
|
Reference in New Issue
Block a user