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

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

Issue 545068: Allow extensions to add, remove, or change their page action popup. (Closed)
Patch Set: Rebase, to run trybots with test data in place. Created 10 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
« no previous file with comments | « chrome/common/extensions/extension.cc ('k') | chrome/common/extensions/extension_constants.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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_CONSTANTS_H_ 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_
6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_
7 7
8 // Keys used in JSON representation of extensions. 8 // Keys used in JSON representation of extensions.
9 namespace extension_manifest_keys { 9 namespace extension_manifest_keys {
10 extern const wchar_t* kAllFrames; 10 extern const wchar_t* kAllFrames;
(...skipping 14 matching lines...) Expand all
25 extern const wchar_t* kIcons; 25 extern const wchar_t* kIcons;
26 extern const wchar_t* kIncludeGlobs; 26 extern const wchar_t* kIncludeGlobs;
27 extern const wchar_t* kJs; 27 extern const wchar_t* kJs;
28 extern const wchar_t* kMatches; 28 extern const wchar_t* kMatches;
29 extern const wchar_t* kName; 29 extern const wchar_t* kName;
30 extern const wchar_t* kPageActionId; 30 extern const wchar_t* kPageActionId;
31 extern const wchar_t* kPageAction; 31 extern const wchar_t* kPageAction;
32 extern const wchar_t* kPageActions; 32 extern const wchar_t* kPageActions;
33 extern const wchar_t* kPageActionIcons; 33 extern const wchar_t* kPageActionIcons;
34 extern const wchar_t* kPageActionDefaultIcon; 34 extern const wchar_t* kPageActionDefaultIcon;
35 extern const wchar_t* kPageActionDefaultPopup;
35 extern const wchar_t* kPageActionDefaultTitle; 36 extern const wchar_t* kPageActionDefaultTitle;
36 extern const wchar_t* kPageActionPopup; 37 extern const wchar_t* kPageActionPopup;
37 extern const wchar_t* kPageActionPopupHeight; 38 extern const wchar_t* kPageActionPopupHeight;
38 extern const wchar_t* kPageActionPopupPath; 39 extern const wchar_t* kPageActionPopupPath;
39 extern const wchar_t* kPermissions; 40 extern const wchar_t* kPermissions;
40 extern const wchar_t* kPlugins; 41 extern const wchar_t* kPlugins;
41 extern const wchar_t* kPluginsPath; 42 extern const wchar_t* kPluginsPath;
42 extern const wchar_t* kPluginsPublic; 43 extern const wchar_t* kPluginsPublic;
43 extern const wchar_t* kPublicKey; 44 extern const wchar_t* kPublicKey;
44 extern const wchar_t* kSignature; 45 extern const wchar_t* kSignature;
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 extern const char* kInvalidToolstrip; 105 extern const char* kInvalidToolstrip;
105 extern const char* kInvalidToolstrips; 106 extern const char* kInvalidToolstrips;
106 extern const char* kInvalidVersion; 107 extern const char* kInvalidVersion;
107 extern const char* kInvalidPageAction; 108 extern const char* kInvalidPageAction;
108 extern const char* kInvalidPageActionName; 109 extern const char* kInvalidPageActionName;
109 extern const char* kInvalidPageActionsList; 110 extern const char* kInvalidPageActionsList;
110 extern const char* kInvalidPageActionsListSize; 111 extern const char* kInvalidPageActionsListSize;
111 extern const char* kInvalidPageActionIconPath; 112 extern const char* kInvalidPageActionIconPath;
112 extern const char* kInvalidPageActionId; 113 extern const char* kInvalidPageActionId;
113 extern const char* kInvalidPageActionDefaultTitle; 114 extern const char* kInvalidPageActionDefaultTitle;
115 extern const char* kInvalidPageActionOldAndNewKeys;
114 extern const char* kInvalidPageActionPopup; 116 extern const char* kInvalidPageActionPopup;
115 extern const char* kInvalidPageActionPopupHeight; 117 extern const char* kInvalidPageActionPopupHeight;
116 extern const char* kInvalidPageActionPopupPath; 118 extern const char* kInvalidPageActionPopupPath;
117 extern const char* kInvalidPageActionTypeValue; 119 extern const char* kInvalidPageActionTypeValue;
118 extern const char* kInvalidPermissions; 120 extern const char* kInvalidPermissions;
119 extern const char* kInvalidPermission; 121 extern const char* kInvalidPermission;
120 extern const char* kInvalidPermissionScheme; 122 extern const char* kInvalidPermissionScheme;
121 extern const char* kInvalidZipHash; 123 extern const char* kInvalidZipHash;
122 extern const char* kInvalidTheme; 124 extern const char* kInvalidTheme;
123 extern const char* kInvalidThemeImagesMissing; 125 extern const char* kInvalidThemeImagesMissing;
(...skipping 21 matching lines...) Expand all
145 extern const char* kGalleryBrowsePrefix; 147 extern const char* kGalleryBrowsePrefix;
146 extern const char* kGalleryDownloadPrefix; 148 extern const char* kGalleryDownloadPrefix;
147 149
148 // Same thing for the "minigallery". The minigallery is the temporary static 150 // Same thing for the "minigallery". The minigallery is the temporary static
149 // themes gallery that we put up when we launched themes. 151 // themes gallery that we put up when we launched themes.
150 extern const char* kMiniGalleryBrowsePrefix; 152 extern const char* kMiniGalleryBrowsePrefix;
151 extern const char* kMiniGalleryDownloadPrefix; 153 extern const char* kMiniGalleryDownloadPrefix;
152 } // namespace extension_urls 154 } // namespace extension_urls
153 155
154 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ 156 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/common/extensions/extension.cc ('k') | chrome/common/extensions/extension_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698