Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(750)

Side by Side Diff: chrome/common/extensions/extension.h

Issue 12084034: Change manifest handler interface to always (implicitly) pass the entire manifest to handlers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tts, TODO Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/speech/tts_engine_manifest_handler.cc ('k') | chrome/common/extensions/extension.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698