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

Side by Side Diff: extensions/common/manifest_constants.h

Issue 2618493002: Chrome app manifest support for action handlers. (Closed)
Patch Set: Address comments Created 3 years, 11 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
OLDNEW
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 EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ 5 #ifndef EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_
6 #define EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ 6 #define EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_
7 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 9
10 namespace extensions { 10 namespace extensions {
11 11
12 // Keys used in JSON representation of extensions. 12 // Keys used in JSON representation of extensions.
13 namespace manifest_keys { 13 namespace manifest_keys {
14 14
15 extern const char kAboutPage[]; 15 extern const char kAboutPage[];
16 extern const char kActionHandlers[];
16 extern const char kAllFrames[]; 17 extern const char kAllFrames[];
17 extern const char kAltKey[]; 18 extern const char kAltKey[];
18 extern const char kApp[]; 19 extern const char kApp[];
19 extern const char kAppIconColor[]; 20 extern const char kAppIconColor[];
20 extern const char kAutomation[]; 21 extern const char kAutomation[];
21 extern const char kBackgroundAllowJsAccess[]; 22 extern const char kBackgroundAllowJsAccess[];
22 extern const char kBackgroundPage[]; 23 extern const char kBackgroundPage[];
23 extern const char kBackgroundPageLegacy[]; 24 extern const char kBackgroundPageLegacy[];
24 extern const char kBackgroundPersistent[]; 25 extern const char kBackgroundPersistent[];
25 extern const char kBackgroundScripts[]; 26 extern const char kBackgroundScripts[];
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 extern const char kCannotScriptGallery[]; 265 extern const char kCannotScriptGallery[];
265 extern const char kCannotScriptSigninPage[]; 266 extern const char kCannotScriptSigninPage[];
266 extern const char kCannotUninstallManagedExtension[]; 267 extern const char kCannotUninstallManagedExtension[];
267 extern const char kChromeVersionTooLow[]; 268 extern const char kChromeVersionTooLow[];
268 extern const char kDevToolsExperimental[]; 269 extern const char kDevToolsExperimental[];
269 extern const char kDisabledByPolicy[]; 270 extern const char kDisabledByPolicy[];
270 extern const char kExpectString[]; 271 extern const char kExpectString[];
271 extern const char kFileNotFound[]; 272 extern const char kFileNotFound[];
272 extern const char kInvalidAboutPage[]; 273 extern const char kInvalidAboutPage[];
273 extern const char kInvalidAboutPageExpectRelativePath[]; 274 extern const char kInvalidAboutPageExpectRelativePath[];
275 extern const char kInvalidActionHandlersActionType[];
276 extern const char kInvalidActionHandlersType[];
274 extern const char kInvalidAllFrames[]; 277 extern const char kInvalidAllFrames[];
275 extern const char kInvalidAppIconColor[]; 278 extern const char kInvalidAppIconColor[];
276 extern const char kInvalidBackground[]; 279 extern const char kInvalidBackground[];
277 extern const char kInvalidBackgroundAllowJsAccess[]; 280 extern const char kInvalidBackgroundAllowJsAccess[];
278 extern const char kInvalidBackgroundCombination[]; 281 extern const char kInvalidBackgroundCombination[];
279 extern const char kInvalidBackgroundScript[]; 282 extern const char kInvalidBackgroundScript[];
280 extern const char kInvalidBackgroundScripts[]; 283 extern const char kInvalidBackgroundScripts[];
281 extern const char kInvalidBackgroundInHostedApp[]; 284 extern const char kInvalidBackgroundInHostedApp[];
282 extern const char kInvalidBackgroundPersistent[]; 285 extern const char kInvalidBackgroundPersistent[];
283 extern const char kInvalidBackgroundPersistentInPlatformApp[]; 286 extern const char kInvalidBackgroundPersistentInPlatformApp[];
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 extern const char kIllegalPlugins[]; 494 extern const char kIllegalPlugins[];
492 extern const char kInvalidFileSystemProviderMissingCapabilities[]; 495 extern const char kInvalidFileSystemProviderMissingCapabilities[];
493 extern const char kInvalidFileSystemProviderMissingPermission[]; 496 extern const char kInvalidFileSystemProviderMissingPermission[];
494 #endif 497 #endif
495 498
496 } // namespace manifest_errors 499 } // namespace manifest_errors
497 500
498 } // namespace extensions 501 } // namespace extensions
499 502
500 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ 503 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698