OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_EXTENSION_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_H_ |
6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_H_ | 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_H_ |
7 | 7 |
8 #include <algorithm> | 8 #include <algorithm> |
9 #include <iosfwd> | 9 #include <iosfwd> |
10 #include <map> | 10 #include <map> |
(...skipping 784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
795 const APIPermissionSet& api_permissions, | 795 const APIPermissionSet& api_permissions, |
796 string16* error); | 796 string16* error); |
797 bool LoadBackgroundPersistent( | 797 bool LoadBackgroundPersistent( |
798 const APIPermissionSet& api_permissions, | 798 const APIPermissionSet& api_permissions, |
799 string16* error); | 799 string16* error); |
800 bool LoadBackgroundAllowJSAccess( | 800 bool LoadBackgroundAllowJSAccess( |
801 const APIPermissionSet& api_permissions, | 801 const APIPermissionSet& api_permissions, |
802 string16* error); | 802 string16* error); |
803 bool LoadExtensionFeatures(APIPermissionSet* api_permissions, | 803 bool LoadExtensionFeatures(APIPermissionSet* api_permissions, |
804 string16* error); | 804 string16* error); |
805 bool LoadManifestHandlerFeatures(string16* error); | |
806 bool LoadContentScripts(string16* error); | 805 bool LoadContentScripts(string16* error); |
807 bool LoadPageAction(string16* error); | 806 bool LoadPageAction(string16* error); |
808 bool LoadBrowserAction(string16* error); | 807 bool LoadBrowserAction(string16* error); |
809 bool LoadSystemIndicator(APIPermissionSet* api_permissions, string16* error); | 808 bool LoadSystemIndicator(APIPermissionSet* api_permissions, string16* error); |
810 bool LoadTextToSpeechVoices(string16* error); | 809 bool LoadTextToSpeechVoices(string16* error); |
811 bool LoadIncognitoMode(string16* error); | 810 bool LoadIncognitoMode(string16* error); |
812 bool LoadContentSecurityPolicy(string16* error); | 811 bool LoadContentSecurityPolicy(string16* error); |
813 | 812 |
814 bool LoadThemeFeatures(string16* error); | 813 bool LoadThemeFeatures(string16* error); |
815 bool LoadThemeImages(const base::DictionaryValue* theme_value, | 814 bool LoadThemeImages(const base::DictionaryValue* theme_value, |
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1130 | 1129 |
1131 UpdatedExtensionPermissionsInfo( | 1130 UpdatedExtensionPermissionsInfo( |
1132 const Extension* extension, | 1131 const Extension* extension, |
1133 const PermissionSet* permissions, | 1132 const PermissionSet* permissions, |
1134 Reason reason); | 1133 Reason reason); |
1135 }; | 1134 }; |
1136 | 1135 |
1137 } // namespace extensions | 1136 } // namespace extensions |
1138 | 1137 |
1139 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_H_ | 1138 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_H_ |
OLD | NEW |