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

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

Issue 591463003: Remote Assistance on Chrome OS Part III - NativeMessageHost (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@native_messaging
Patch Set: Fix NativeMessagingBasic test on Release builds Created 6 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
« 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 // Enables the App Info dialog to be launched from the chrome://extensions page. 55 // Enables the App Info dialog to be launched from the chrome://extensions page.
56 const char kEnableExtensionInfoDialog[] = "enable-extension-info-dialog"; 56 const char kEnableExtensionInfoDialog[] = "enable-extension-info-dialog";
57 57
58 // Hack so that feature switch can work with about_flags. See 58 // Hack so that feature switch can work with about_flags. See
59 // kEnableScriptsRequireAction. 59 // kEnableScriptsRequireAction.
60 const char kEnableMimeHandlerView[] = "enable-mime-handler-view"; 60 const char kEnableMimeHandlerView[] = "enable-mime-handler-view";
61 61
62 // Enables extensions to hide bookmarks UI elements. 62 // Enables extensions to hide bookmarks UI elements.
63 const char kEnableOverrideBookmarksUI[] = "enable-override-bookmarks-ui"; 63 const char kEnableOverrideBookmarksUI[] = "enable-override-bookmarks-ui";
64 64
65 // Allows remote assistance connection to this computer using the Chrome Remote
66 // Desktop app on Chrome OS.
67 const char kEnableRemoteAssistance[] = "enable-remote-assistance";
68
65 // Allows the ErrorConsole to collect runtime and manifest errors, and display 69 // Allows the ErrorConsole to collect runtime and manifest errors, and display
66 // them in the chrome:extensions page. 70 // them in the chrome:extensions page.
67 const char kErrorConsole[] = "error-console"; 71 const char kErrorConsole[] = "error-console";
68 72
69 // Whether to switch to extension action redesign mode (experimental). 73 // Whether to switch to extension action redesign mode (experimental).
70 const char kExtensionActionRedesign[] = "extension-action-redesign"; 74 const char kExtensionActionRedesign[] = "extension-action-redesign";
71 75
72 // Marks a renderer as extension process. 76 // Marks a renderer as extension process.
73 const char kExtensionProcess[] = "extension-process"; 77 const char kExtensionProcess[] = "extension-process";
74 78
(...skipping 22 matching lines...) Expand all
97 // Makes component extensions appear in chrome://settings/extensions. 101 // Makes component extensions appear in chrome://settings/extensions.
98 const char kShowComponentExtensionOptions[] = 102 const char kShowComponentExtensionOptions[] =
99 "show-component-extension-options"; 103 "show-component-extension-options";
100 104
101 // Adds the given extension ID to all the permission whitelists. 105 // Adds the given extension ID to all the permission whitelists.
102 const char kWhitelistedExtensionID[] = "whitelisted-extension-id"; 106 const char kWhitelistedExtensionID[] = "whitelisted-extension-id";
103 107
104 } // namespace switches 108 } // namespace switches
105 109
106 } // namespace extensions 110 } // 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