mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-01 20:07:27 +01:00
24c2f2fa38
- CefURLRequest::Create is no longer supported in the renderer process (see https://crbug.com/891872). Use CefFrame::CreateURLRequest instead. - Mac platform definitions have been changed from `MACOSX` to `MAC` (see https://crbug.com/1105907) and related CMake macro names have been updated. The old `OS_MACOSX` define is still set in code and CMake for backwards compatibility. - Linux ARM build is currently broken (see https://crbug.com/1123214).
57 lines
2.1 KiB
C++
57 lines
2.1 KiB
C++
// Copyright 2015 The Chromium Embedded Framework Authors.
|
|
// Portions copyright 2014 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef CEF_LIBCEF_COMMON_EXTENSIONS_EXTENSIONS_CLIENT_H_
|
|
#define CEF_LIBCEF_COMMON_EXTENSIONS_EXTENSIONS_CLIENT_H_
|
|
|
|
#include "base/compiler_specific.h"
|
|
#include "base/macros.h"
|
|
#include "chrome/common/extensions/permissions/chrome_permission_message_provider.h"
|
|
#include "extensions/common/extensions_client.h"
|
|
#include "url/gurl.h"
|
|
|
|
namespace extensions {
|
|
|
|
// The CEF implementation of ExtensionsClient.
|
|
class CefExtensionsClient : public ExtensionsClient {
|
|
public:
|
|
CefExtensionsClient();
|
|
~CefExtensionsClient() override;
|
|
|
|
// ExtensionsClient overrides:
|
|
void Initialize() override;
|
|
void InitializeWebStoreUrls(base::CommandLine* command_line) override;
|
|
const PermissionMessageProvider& GetPermissionMessageProvider()
|
|
const override;
|
|
const std::string GetProductName() override;
|
|
void FilterHostPermissions(const URLPatternSet& hosts,
|
|
URLPatternSet* new_hosts,
|
|
PermissionIDSet* permissions) const override;
|
|
void SetScriptingAllowlist(const ScriptingAllowlist& allowlist) override;
|
|
const ScriptingAllowlist& GetScriptingAllowlist() const override;
|
|
URLPatternSet GetPermittedChromeSchemeHosts(
|
|
const Extension* extension,
|
|
const APIPermissionSet& api_permissions) const override;
|
|
bool IsScriptableURL(const GURL& url, std::string* error) const override;
|
|
const GURL& GetWebstoreBaseURL() const override;
|
|
const GURL& GetWebstoreUpdateURL() const override;
|
|
bool IsBlacklistUpdateURL(const GURL& url) const override;
|
|
|
|
private:
|
|
const ChromePermissionMessageProvider permission_message_provider_;
|
|
|
|
ScriptingAllowlist scripting_allowlist_;
|
|
|
|
// Mutable to allow caching in a const method.
|
|
const GURL webstore_base_url_;
|
|
const GURL webstore_update_url_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(CefExtensionsClient);
|
|
};
|
|
|
|
} // namespace extensions
|
|
|
|
#endif // CEF_LIBCEF_COMMON_EXTENSIONS_EXTENSIONS_CLIENT_H_
|