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

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: gclient sync 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
« no previous file with comments | « extensions/common/manifest_constants.h ('k') | ui/gfx/win/singleton_hwnd.h » ('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 27 matching lines...) Expand all
38 const char kExport[] = "export"; 38 const char kExport[] = "export";
39 const char kExternallyConnectable[] = "externally_connectable"; 39 const char kExternallyConnectable[] = "externally_connectable";
40 const char kFileAccessList[] = "file_access"; 40 const char kFileAccessList[] = "file_access";
41 const char kFileFilters[] = "file_filters"; 41 const char kFileFilters[] = "file_filters";
42 const char kFileBrowserHandlers[] = "file_browser_handlers"; 42 const char kFileBrowserHandlers[] = "file_browser_handlers";
43 const char kMediaGalleriesHandlers[] = "media_galleries_handlers"; 43 const char kMediaGalleriesHandlers[] = "media_galleries_handlers";
44 const char kFileHandlers[] = "file_handlers"; 44 const char kFileHandlers[] = "file_handlers";
45 const char kFileHandlerExtensions[] = "extensions"; 45 const char kFileHandlerExtensions[] = "extensions";
46 const char kFileHandlerTitle[] = "title"; 46 const char kFileHandlerTitle[] = "title";
47 const char kFileHandlerTypes[] = "types"; 47 const char kFileHandlerTypes[] = "types";
48 const char kGlobal[] = "global";
48 const char kHomepageURL[] = "homepage_url"; 49 const char kHomepageURL[] = "homepage_url";
49 const char kIcons[] = "icons"; 50 const char kIcons[] = "icons";
50 const char kId[] = "id"; 51 const char kId[] = "id";
51 const char kImport[] = "import"; 52 const char kImport[] = "import";
52 const char kIncognito[] = "incognito"; 53 const char kIncognito[] = "incognito";
53 const char kIncludeGlobs[] = "include_globs"; 54 const char kIncludeGlobs[] = "include_globs";
54 const char kInputComponents[] = "input_components"; 55 const char kInputComponents[] = "input_components";
55 const char kIsolation[] = "app.isolation"; 56 const char kIsolation[] = "app.isolation";
56 const char kJs[] = "js"; 57 const char kJs[] = "js";
57 const char kKey[] = "key"; 58 const char kKey[] = "key";
(...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after
663 const char kWebRequestConflictsWithLazyBackground[] = 664 const char kWebRequestConflictsWithLazyBackground[] =
664 "The 'webRequest' API cannot be used with event pages."; 665 "The 'webRequest' API cannot be used with event pages.";
665 #if defined(OS_CHROMEOS) 666 #if defined(OS_CHROMEOS)
666 const char kIllegalPlugins[] = 667 const char kIllegalPlugins[] =
667 "Extensions cannot install plugins on Chrome OS"; 668 "Extensions cannot install plugins on Chrome OS";
668 #endif 669 #endif
669 670
670 } // namespace manifest_errors 671 } // namespace manifest_errors
671 672
672 } // namespace extensions 673 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/common/manifest_constants.h ('k') | ui/gfx/win/singleton_hwnd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698