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

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

Issue 2618493002: Chrome app manifest support for action handlers. (Closed)
Patch Set: Make //components/version_info:version_info dep explicit Created 3 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 | « extensions/common/common_manifest_handlers.cc ('k') | extensions/common/manifest_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 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 {
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 extern const char kVersion[]; 182 extern const char kVersion[];
183 extern const char kVersionName[]; 183 extern const char kVersionName[];
184 extern const char kWebAccessibleResources[]; 184 extern const char kWebAccessibleResources[];
185 extern const char kWebURLs[]; 185 extern const char kWebURLs[];
186 extern const char kWebview[]; 186 extern const char kWebview[];
187 extern const char kWebviewName[]; 187 extern const char kWebviewName[];
188 extern const char kWebviewAccessibleResources[]; 188 extern const char kWebviewAccessibleResources[];
189 extern const char kWebviewPartitions[]; 189 extern const char kWebviewPartitions[];
190 extern const char kWhitelist[]; 190 extern const char kWhitelist[];
191 #if defined(OS_CHROMEOS) 191 #if defined(OS_CHROMEOS)
192 extern const char kActionHandlers[];
192 extern const char kFileSystemProviderCapabilities[]; 193 extern const char kFileSystemProviderCapabilities[];
193 #endif 194 #endif
194 } // namespace manifest_keys 195 } // namespace manifest_keys
195 196
196 // Some values expected in manifests. 197 // Some values expected in manifests.
197 namespace manifest_values { 198 namespace manifest_values {
198 199
199 extern const char kApiKey[]; 200 extern const char kApiKey[];
200 extern const char kBrowserActionCommandEvent[]; 201 extern const char kBrowserActionCommandEvent[];
201 extern const char kIncognitoNotAllowed[]; 202 extern const char kIncognitoNotAllowed[];
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 extern const char kPermissionMustBeOptional[]; 484 extern const char kPermissionMustBeOptional[];
484 extern const char kPermissionNotAllowed[]; 485 extern const char kPermissionNotAllowed[];
485 extern const char kPermissionNotAllowedInManifest[]; 486 extern const char kPermissionNotAllowedInManifest[];
486 extern const char kPermissionUnknownOrMalformed[]; 487 extern const char kPermissionUnknownOrMalformed[];
487 extern const char kReservedMessageFound[]; 488 extern const char kReservedMessageFound[];
488 extern const char kUnrecognizedManifestKey[]; 489 extern const char kUnrecognizedManifestKey[];
489 extern const char kUnrecognizedManifestProperty[]; 490 extern const char kUnrecognizedManifestProperty[];
490 extern const char kWebRequestConflictsWithLazyBackground[]; 491 extern const char kWebRequestConflictsWithLazyBackground[];
491 #if defined(OS_CHROMEOS) 492 #if defined(OS_CHROMEOS)
492 extern const char kIllegalPlugins[]; 493 extern const char kIllegalPlugins[];
494 extern const char kInvalidActionHandlersActionType[];
495 extern const char kInvalidActionHandlersType[];
493 extern const char kInvalidFileSystemProviderMissingCapabilities[]; 496 extern const char kInvalidFileSystemProviderMissingCapabilities[];
494 extern const char kInvalidFileSystemProviderMissingPermission[]; 497 extern const char kInvalidFileSystemProviderMissingPermission[];
495 #endif 498 #endif
496 499
497 } // namespace manifest_errors 500 } // namespace manifest_errors
498 501
499 } // namespace extensions 502 } // namespace extensions
500 503
501 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ 504 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_
OLDNEW
« no previous file with comments | « extensions/common/common_manifest_handlers.cc ('k') | extensions/common/manifest_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698