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

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

Issue 1077823005: Declare providing extension capabilities in the manifest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed tests. Created 5 years, 7 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 namespace extensions { 8 namespace extensions {
9 9
10 // Keys used in JSON representation of extensions. 10 // Keys used in JSON representation of extensions.
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 extern const char kUrlHandlerTitle[]; 177 extern const char kUrlHandlerTitle[];
178 extern const char kVersion[]; 178 extern const char kVersion[];
179 extern const char kVersionName[]; 179 extern const char kVersionName[];
180 extern const char kWebAccessibleResources[]; 180 extern const char kWebAccessibleResources[];
181 extern const char kWebURLs[]; 181 extern const char kWebURLs[];
182 extern const char kWebview[]; 182 extern const char kWebview[];
183 extern const char kWebviewName[]; 183 extern const char kWebviewName[];
184 extern const char kWebviewAccessibleResources[]; 184 extern const char kWebviewAccessibleResources[];
185 extern const char kWebviewPartitions[]; 185 extern const char kWebviewPartitions[];
186 extern const char kWhitelist[]; 186 extern const char kWhitelist[];
187 187 #if defined(OS_CHROMEOS)
188 extern const char kFileSystemProvider[];
189 #endif
188 } // namespace manifest_keys 190 } // namespace manifest_keys
189 191
190 // Some values expected in manifests. 192 // Some values expected in manifests.
191 namespace manifest_values { 193 namespace manifest_values {
192 194
193 extern const char kApiKey[]; 195 extern const char kApiKey[];
194 extern const char kBrowserActionCommandEvent[]; 196 extern const char kBrowserActionCommandEvent[];
195 extern const char kIncognitoSplit[]; 197 extern const char kIncognitoSplit[];
196 extern const char kIncognitoSpanning[]; 198 extern const char kIncognitoSpanning[];
197 extern const char kIsolatedStorage[]; 199 extern const char kIsolatedStorage[];
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 extern const char kPermissionMustBeOptional[]; 471 extern const char kPermissionMustBeOptional[];
470 extern const char kPermissionNotAllowed[]; 472 extern const char kPermissionNotAllowed[];
471 extern const char kPermissionNotAllowedInManifest[]; 473 extern const char kPermissionNotAllowedInManifest[];
472 extern const char kPermissionUnknownOrMalformed[]; 474 extern const char kPermissionUnknownOrMalformed[];
473 extern const char kReservedMessageFound[]; 475 extern const char kReservedMessageFound[];
474 extern const char kUnrecognizedManifestKey[]; 476 extern const char kUnrecognizedManifestKey[];
475 extern const char kUnrecognizedManifestProperty[]; 477 extern const char kUnrecognizedManifestProperty[];
476 extern const char kWebRequestConflictsWithLazyBackground[]; 478 extern const char kWebRequestConflictsWithLazyBackground[];
477 #if defined(OS_CHROMEOS) 479 #if defined(OS_CHROMEOS)
478 extern const char kIllegalPlugins[]; 480 extern const char kIllegalPlugins[];
481 extern const char kInvalidFileSystemProvider[];
479 #endif 482 #endif
480 483
481 } // namespace manifest_errors 484 } // namespace manifest_errors
482 485
483 } // namespace extensions 486 } // namespace extensions
484 487
485 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ 488 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698