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

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

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
« no previous file with comments | « extensions/common/manifest_constants.h ('k') | no next file » | 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 #include "extensions/common/manifest_constants.h" 5 #include "extensions/common/manifest_constants.h"
6 6
7 namespace extensions { 7 namespace extensions {
8 8
9 namespace manifest_keys { 9 namespace manifest_keys {
10 10
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 const char kUsbPrinters[] = "usb_printers"; 177 const char kUsbPrinters[] = "usb_printers";
178 const char kVersion[] = "version"; 178 const char kVersion[] = "version";
179 const char kVersionName[] = "version_name"; 179 const char kVersionName[] = "version_name";
180 const char kWebAccessibleResources[] = "web_accessible_resources"; 180 const char kWebAccessibleResources[] = "web_accessible_resources";
181 const char kWebURLs[] = "app.urls"; 181 const char kWebURLs[] = "app.urls";
182 const char kWebview[] = "webview"; 182 const char kWebview[] = "webview";
183 const char kWebviewAccessibleResources[] = "accessible_resources"; 183 const char kWebviewAccessibleResources[] = "accessible_resources";
184 const char kWebviewName[] = "name"; 184 const char kWebviewName[] = "name";
185 const char kWebviewPartitions[] = "partitions"; 185 const char kWebviewPartitions[] = "partitions";
186 const char kWhitelist[] = "whitelist"; 186 const char kWhitelist[] = "whitelist";
187 #if defined(OS_CHROMEOS)
188 const char kFileSystemProvider[] = "file_system_provider";
189 #endif
187 190
188 } // namespace manifest_keys 191 } // namespace manifest_keys
189 192
190 namespace manifest_values { 193 namespace manifest_values {
191 194
192 const char kApiKey[] = "api_key"; 195 const char kApiKey[] = "api_key";
193 const char kBrowserActionCommandEvent[] = "_execute_browser_action"; 196 const char kBrowserActionCommandEvent[] = "_execute_browser_action";
194 const char kIncognitoSplit[] = "split"; 197 const char kIncognitoSplit[] = "split";
195 const char kIncognitoSpanning[] = "spanning"; 198 const char kIncognitoSpanning[] = "spanning";
196 const char kIsolatedStorage[] = "storage"; 199 const char kIsolatedStorage[] = "storage";
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after
708 const char kWebRequestConflictsWithLazyBackground[] = 711 const char kWebRequestConflictsWithLazyBackground[] =
709 "The 'webRequest' API cannot be used with event pages."; 712 "The 'webRequest' API cannot be used with event pages.";
710 #if defined(OS_CHROMEOS) 713 #if defined(OS_CHROMEOS)
711 const char kIllegalPlugins[] = 714 const char kIllegalPlugins[] =
712 "Extensions cannot install plugins on Chrome OS"; 715 "Extensions cannot install plugins on Chrome OS";
713 #endif 716 #endif
714 717
715 } // namespace manifest_errors 718 } // namespace manifest_errors
716 719
717 } // namespace extensions 720 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/common/manifest_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698