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

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: Polishing a bit Created 7 years, 3 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 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
644 const char kWebRequestConflictsWithLazyBackground[] = 645 const char kWebRequestConflictsWithLazyBackground[] =
645 "The 'webRequest' API cannot be used with event pages."; 646 "The 'webRequest' API cannot be used with event pages.";
646 #if defined(OS_CHROMEOS) 647 #if defined(OS_CHROMEOS)
647 const char kIllegalPlugins[] = 648 const char kIllegalPlugins[] =
648 "Extensions cannot install plugins on Chrome OS"; 649 "Extensions cannot install plugins on Chrome OS";
649 #endif 650 #endif
650 651
651 } // namespace manifest_errors 652 } // namespace manifest_errors
652 653
653 } // namespace extensions 654 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698