cygprofile: increase timeouts to allow showing web contents
[chromium-blink-merge.git] / chrome / common / extensions / chrome_extensions_client.h
blob8728186042202e85223eaffaefa8cde3045a4e4c
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_COMMON_EXTENSIONS_CHROME_EXTENSIONS_CLIENT_H_
6 #define CHROME_COMMON_EXTENSIONS_CHROME_EXTENSIONS_CLIENT_H_
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "base/lazy_instance.h"
11 #include "chrome/common/extensions/permissions/chrome_api_permissions.h"
12 #include "chrome/common/extensions/permissions/chrome_permission_message_provider.h"
13 #include "extensions/common/extensions_client.h"
14 #include "extensions/common/permissions/extensions_api_permissions.h"
16 namespace extensions {
18 // The implementation of ExtensionsClient for Chrome, which encapsulates the
19 // global knowledge of features, permissions, and manifest fields.
20 class ChromeExtensionsClient : public ExtensionsClient {
21 public:
22 ChromeExtensionsClient();
23 ~ChromeExtensionsClient() override;
25 void Initialize() override;
27 const PermissionMessageProvider& GetPermissionMessageProvider()
28 const override;
29 const std::string GetProductName() override;
30 scoped_ptr<FeatureProvider> CreateFeatureProvider(
31 const std::string& name) const override;
32 scoped_ptr<JSONFeatureProviderSource> CreateFeatureProviderSource(
33 const std::string& name) const override;
34 void FilterHostPermissions(const URLPatternSet& hosts,
35 URLPatternSet* new_hosts,
36 PermissionIDSet* permissions) const override;
37 void SetScriptingWhitelist(const ScriptingWhitelist& whitelist) override;
38 const ScriptingWhitelist& GetScriptingWhitelist() const override;
39 URLPatternSet GetPermittedChromeSchemeHosts(
40 const Extension* extension,
41 const APIPermissionSet& api_permissions) const override;
42 bool IsScriptableURL(const GURL& url, std::string* error) const override;
43 bool IsAPISchemaGenerated(const std::string& name) const override;
44 base::StringPiece GetAPISchema(const std::string& name) const override;
45 void RegisterAPISchemaResources(ExtensionAPI* api) const override;
46 bool ShouldSuppressFatalErrors() const override;
47 void RecordDidSuppressFatalError() override;
48 std::string GetWebstoreBaseURL() const override;
49 std::string GetWebstoreUpdateURL() const override;
50 bool IsBlacklistUpdateURL(const GURL& url) const override;
51 std::set<base::FilePath> GetBrowserImagePaths(
52 const Extension* extension) override;
54 // Get the LazyInstance for ChromeExtensionsClient.
55 static ChromeExtensionsClient* GetInstance();
57 private:
58 const ChromeAPIPermissions chrome_api_permissions_;
59 const ExtensionsAPIPermissions extensions_api_permissions_;
60 const ChromePermissionMessageProvider permission_message_provider_;
62 // A whitelist of extensions that can script anywhere. Do not add to this
63 // list (except in tests) without consulting the Extensions team first.
64 // Note: Component extensions have this right implicitly and do not need to be
65 // added to this list.
66 ScriptingWhitelist scripting_whitelist_;
68 friend struct base::DefaultLazyInstanceTraits<ChromeExtensionsClient>;
70 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsClient);
73 } // namespace extensions
75 #endif // CHROME_COMMON_EXTENSIONS_CHROME_EXTENSIONS_CLIENT_H_