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

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

Issue 23812010: Implement first part of supporting global extension commands. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fewer if-defs Created 7 years, 2 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 | Annotate | Revision Log
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 28 matching lines...) Expand all
39 const char kExport[] = "export"; 39 const char kExport[] = "export";
40 const char kExternallyConnectable[] = "externally_connectable"; 40 const char kExternallyConnectable[] = "externally_connectable";
41 const char kFileAccessList[] = "file_access"; 41 const char kFileAccessList[] = "file_access";
42 const char kFileFilters[] = "file_filters"; 42 const char kFileFilters[] = "file_filters";
43 const char kFileBrowserHandlers[] = "file_browser_handlers"; 43 const char kFileBrowserHandlers[] = "file_browser_handlers";
44 const char kMediaGalleriesHandlers[] = "media_galleries_handlers"; 44 const char kMediaGalleriesHandlers[] = "media_galleries_handlers";
45 const char kFileHandlers[] = "file_handlers"; 45 const char kFileHandlers[] = "file_handlers";
46 const char kFileHandlerExtensions[] = "extensions"; 46 const char kFileHandlerExtensions[] = "extensions";
47 const char kFileHandlerTitle[] = "title"; 47 const char kFileHandlerTitle[] = "title";
48 const char kFileHandlerTypes[] = "types"; 48 const char kFileHandlerTypes[] = "types";
49 const char kGlobal[] = "global";
49 const char kHomepageURL[] = "homepage_url"; 50 const char kHomepageURL[] = "homepage_url";
50 const char kIcons[] = "icons"; 51 const char kIcons[] = "icons";
51 const char kId[] = "id"; 52 const char kId[] = "id";
52 const char kImport[] = "import"; 53 const char kImport[] = "import";
53 const char kIncognito[] = "incognito"; 54 const char kIncognito[] = "incognito";
54 const char kIncludeGlobs[] = "include_globs"; 55 const char kIncludeGlobs[] = "include_globs";
55 const char kInputComponents[] = "input_components"; 56 const char kInputComponents[] = "input_components";
56 const char kIsolation[] = "app.isolation"; 57 const char kIsolation[] = "app.isolation";
57 const char kJs[] = "js"; 58 const char kJs[] = "js";
58 const char kKey[] = "key"; 59 const char kKey[] = "key";
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after
646 const char kWebRequestConflictsWithLazyBackground[] = 647 const char kWebRequestConflictsWithLazyBackground[] =
647 "The 'webRequest' API cannot be used with event pages."; 648 "The 'webRequest' API cannot be used with event pages.";
648 #if defined(OS_CHROMEOS) 649 #if defined(OS_CHROMEOS)
649 const char kIllegalPlugins[] = 650 const char kIllegalPlugins[] =
650 "Extensions cannot install plugins on Chrome OS"; 651 "Extensions cannot install plugins on Chrome OS";
651 #endif 652 #endif
652 653
653 } // namespace manifest_errors 654 } // namespace manifest_errors
654 655
655 } // namespace extensions 656 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698