OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_COMMON_EXTENSIONS_CHROME_EXTENSIONS_CLIENT_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_CHROME_EXTENSIONS_CLIENT_H_ |
6 #define CHROME_COMMON_EXTENSIONS_CHROME_EXTENSIONS_CLIENT_H_ | 6 #define CHROME_COMMON_EXTENSIONS_CHROME_EXTENSIONS_CLIENT_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/lazy_instance.h" | 10 #include "base/lazy_instance.h" |
(...skipping 22 matching lines...) Expand all Loading... |
33 URLPatternSet* new_hosts, | 33 URLPatternSet* new_hosts, |
34 std::set<PermissionMessage>* messages) const OVERRIDE; | 34 std::set<PermissionMessage>* messages) const OVERRIDE; |
35 virtual void SetScriptingWhitelist(const ScriptingWhitelist& whitelist) | 35 virtual void SetScriptingWhitelist(const ScriptingWhitelist& whitelist) |
36 OVERRIDE; | 36 OVERRIDE; |
37 virtual const ScriptingWhitelist& GetScriptingWhitelist() const OVERRIDE; | 37 virtual const ScriptingWhitelist& GetScriptingWhitelist() const OVERRIDE; |
38 virtual URLPatternSet GetPermittedChromeSchemeHosts( | 38 virtual URLPatternSet GetPermittedChromeSchemeHosts( |
39 const Extension* extension, | 39 const Extension* extension, |
40 const APIPermissionSet& api_permissions) const OVERRIDE; | 40 const APIPermissionSet& api_permissions) const OVERRIDE; |
41 virtual bool IsScriptableURL(const GURL& url, std::string* error) const | 41 virtual bool IsScriptableURL(const GURL& url, std::string* error) const |
42 OVERRIDE; | 42 OVERRIDE; |
| 43 virtual bool IsAPISchemaGenerated(const std::string& name) const OVERRIDE; |
| 44 virtual base::StringPiece GetAPISchema(const std::string& name) const |
| 45 OVERRIDE; |
| 46 |
43 // Get the LazyInstance for ChromeExtensionsClient. | 47 // Get the LazyInstance for ChromeExtensionsClient. |
44 static ChromeExtensionsClient* GetInstance(); | 48 static ChromeExtensionsClient* GetInstance(); |
45 | 49 |
46 private: | 50 private: |
47 const ChromeAPIPermissions chrome_api_permissions_; | 51 const ChromeAPIPermissions chrome_api_permissions_; |
48 const ChromePermissionMessageProvider permission_message_provider_; | 52 const ChromePermissionMessageProvider permission_message_provider_; |
49 | 53 |
50 // A whitelist of extensions that can script anywhere. Do not add to this | 54 // A whitelist of extensions that can script anywhere. Do not add to this |
51 // list (except in tests) without consulting the Extensions team first. | 55 // list (except in tests) without consulting the Extensions team first. |
52 // Note: Component extensions have this right implicitly and do not need to be | 56 // Note: Component extensions have this right implicitly and do not need to be |
53 // added to this list. | 57 // added to this list. |
54 ScriptingWhitelist scripting_whitelist_; | 58 ScriptingWhitelist scripting_whitelist_; |
55 | 59 |
56 friend struct base::DefaultLazyInstanceTraits<ChromeExtensionsClient>; | 60 friend struct base::DefaultLazyInstanceTraits<ChromeExtensionsClient>; |
57 | 61 |
58 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsClient); | 62 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsClient); |
59 }; | 63 }; |
60 | 64 |
61 } // namespace extensions | 65 } // namespace extensions |
62 | 66 |
63 #endif // CHROME_COMMON_EXTENSIONS_CHROME_EXTENSIONS_CLIENT_H_ | 67 #endif // CHROME_COMMON_EXTENSIONS_CHROME_EXTENSIONS_CLIENT_H_ |
OLD | NEW |