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

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

Issue 1158693006: Create a mechanism define declarative rules via the extension manifest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add thread safety to extensionregistry notifications Created 5 years, 6 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') | extensions/extensions.gypi » ('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 #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 26 matching lines...) Expand all
37 const char kDefaultLocale[] = "default_locale"; 37 const char kDefaultLocale[] = "default_locale";
38 const char kDescription[] = "description"; 38 const char kDescription[] = "description";
39 const char kDevToolsPage[] = "devtools_page"; 39 const char kDevToolsPage[] = "devtools_page";
40 const char kDisplayInLauncher[] = "display_in_launcher"; 40 const char kDisplayInLauncher[] = "display_in_launcher";
41 const char kDisplayInNewTabPage[] = "display_in_new_tab_page"; 41 const char kDisplayInNewTabPage[] = "display_in_new_tab_page";
42 const char kEventName[] = "event_name"; 42 const char kEventName[] = "event_name";
43 const char kExcludeGlobs[] = "exclude_globs"; 43 const char kExcludeGlobs[] = "exclude_globs";
44 const char kExcludeMatches[] = "exclude_matches"; 44 const char kExcludeMatches[] = "exclude_matches";
45 const char kExport[] = "export"; 45 const char kExport[] = "export";
46 const char kExternallyConnectable[] = "externally_connectable"; 46 const char kExternallyConnectable[] = "externally_connectable";
47 const char kEventRules[] = "event_rules";
47 const char kFileAccessList[] = "file_access"; 48 const char kFileAccessList[] = "file_access";
48 const char kFileFilters[] = "file_filters"; 49 const char kFileFilters[] = "file_filters";
49 const char kFileBrowserHandlers[] = "file_browser_handlers"; 50 const char kFileBrowserHandlers[] = "file_browser_handlers";
50 const char kFileHandlers[] = "file_handlers"; 51 const char kFileHandlers[] = "file_handlers";
51 const char kFileHandlerExtensions[] = "extensions"; 52 const char kFileHandlerExtensions[] = "extensions";
52 const char kFileHandlerTypes[] = "types"; 53 const char kFileHandlerTypes[] = "types";
53 const char kGlobal[] = "global"; 54 const char kGlobal[] = "global";
54 const char kHideBookmarkButton[] = "hide_bookmark_button"; 55 const char kHideBookmarkButton[] = "hide_bookmark_button";
55 const char kHomepageURL[] = "homepage_url"; 56 const char kHomepageURL[] = "homepage_url";
56 const char kIcons[] = "icons"; 57 const char kIcons[] = "icons";
(...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after
719 "'file_system_provider_capabilities' section to be specified in the " 720 "'file_system_provider_capabilities' section to be specified in the "
720 "manifest."; 721 "manifest.";
721 const char kInvalidFileSystemProviderMissingPermission[] = 722 const char kInvalidFileSystemProviderMissingPermission[] =
722 "The 'file_system_provider_capabilities' section requires the " 723 "The 'file_system_provider_capabilities' section requires the "
723 "'fileSystemProvider' permission to be specified in the manifest."; 724 "'fileSystemProvider' permission to be specified in the manifest.";
724 #endif 725 #endif
725 726
726 } // namespace manifest_errors 727 } // namespace manifest_errors
727 728
728 } // namespace extensions 729 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/common/manifest_constants.h ('k') | extensions/extensions.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698