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

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

Issue 652793002: Add service registration for apps APIs implemented as mojo services. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 1 month 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/switches.h ('k') | extensions/extensions.gyp » ('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/switches.h" 5 #include "extensions/common/switches.h"
6 6
7 namespace extensions { 7 namespace extensions {
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 43
44 // Hack so that feature switch can work with about_flags. See 44 // Hack so that feature switch can work with about_flags. See
45 // kEnableScriptsRequireAction. 45 // kEnableScriptsRequireAction.
46 const char kEnableExtensionActionRedesign[] = 46 const char kEnableExtensionActionRedesign[] =
47 "enable-extension-action-redesign"; 47 "enable-extension-action-redesign";
48 48
49 // Hack so that feature switch can work with about_flags. See 49 // Hack so that feature switch can work with about_flags. See
50 // kEnableScriptsRequireAction. 50 // kEnableScriptsRequireAction.
51 const char kEnableMimeHandlerView[] = "enable-mime-handler-view"; 51 const char kEnableMimeHandlerView[] = "enable-mime-handler-view";
52 52
53 // Enables the mojo implementation of the serial API.
54 const char kEnableMojoSerialService[] = "enable-mojo-serial-service";
55
53 // Enables extensions to hide bookmarks UI elements. 56 // Enables extensions to hide bookmarks UI elements.
54 const char kEnableOverrideBookmarksUI[] = "enable-override-bookmarks-ui"; 57 const char kEnableOverrideBookmarksUI[] = "enable-override-bookmarks-ui";
55 58
56 // Allows remote assistance connection to this computer using the Chrome Remote 59 // Allows remote assistance connection to this computer using the Chrome Remote
57 // Desktop app on Chrome OS. 60 // Desktop app on Chrome OS.
58 const char kEnableRemoteAssistance[] = "enable-remote-assistance"; 61 const char kEnableRemoteAssistance[] = "enable-remote-assistance";
59 62
60 // Allows the ErrorConsole to collect runtime and manifest errors, and display 63 // Allows the ErrorConsole to collect runtime and manifest errors, and display
61 // them in the chrome:extensions page. 64 // them in the chrome:extensions page.
62 const char kErrorConsole[] = "error-console"; 65 const char kErrorConsole[] = "error-console";
(...skipping 29 matching lines...) Expand all
92 // Makes component extensions appear in chrome://settings/extensions. 95 // Makes component extensions appear in chrome://settings/extensions.
93 const char kShowComponentExtensionOptions[] = 96 const char kShowComponentExtensionOptions[] =
94 "show-component-extension-options"; 97 "show-component-extension-options";
95 98
96 // Adds the given extension ID to all the permission whitelists. 99 // Adds the given extension ID to all the permission whitelists.
97 const char kWhitelistedExtensionID[] = "whitelisted-extension-id"; 100 const char kWhitelistedExtensionID[] = "whitelisted-extension-id";
98 101
99 } // namespace switches 102 } // namespace switches
100 103
101 } // namespace extensions 104 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/common/switches.h ('k') | extensions/extensions.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698