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

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

Issue 782823002: Remove flag for Remote Assistance on Chrome OS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Leave histogram unchanged for data decoding in older versions Created 6 years 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') | no next file » | 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 // Enables the mojo implementation of the serial API. 49 // Enables the mojo implementation of the serial API.
50 const char kEnableMojoSerialService[] = "enable-mojo-serial-service"; 50 const char kEnableMojoSerialService[] = "enable-mojo-serial-service";
51 51
52 // Enables extensions to hide bookmarks UI elements. 52 // Enables extensions to hide bookmarks UI elements.
53 const char kEnableOverrideBookmarksUI[] = "enable-override-bookmarks-ui"; 53 const char kEnableOverrideBookmarksUI[] = "enable-override-bookmarks-ui";
54 54
55 // Allows remote assistance connection to this computer using the Chrome Remote
56 // Desktop app on Chrome OS.
57 const char kEnableRemoteAssistance[] = "enable-remote-assistance";
58
59 // Allows the ErrorConsole to collect runtime and manifest errors, and display 55 // Allows the ErrorConsole to collect runtime and manifest errors, and display
60 // them in the chrome:extensions page. 56 // them in the chrome:extensions page.
61 const char kErrorConsole[] = "error-console"; 57 const char kErrorConsole[] = "error-console";
62 58
63 // Whether to switch to extension action redesign mode (experimental). 59 // Whether to switch to extension action redesign mode (experimental).
64 const char kExtensionActionRedesign[] = "extension-action-redesign"; 60 const char kExtensionActionRedesign[] = "extension-action-redesign";
65 61
66 // Marks a renderer as extension process. 62 // Marks a renderer as extension process.
67 const char kExtensionProcess[] = "extension-process"; 63 const char kExtensionProcess[] = "extension-process";
68 64
(...skipping 26 matching lines...) Expand all
95 91
96 // Adds the given extension ID to all the permission whitelists. 92 // Adds the given extension ID to all the permission whitelists.
97 const char kWhitelistedExtensionID[] = "whitelisted-extension-id"; 93 const char kWhitelistedExtensionID[] = "whitelisted-extension-id";
98 94
99 // Pass launch source to platform apps. 95 // Pass launch source to platform apps.
100 const char kTraceAppSource[] = "enable-trace-app-source"; 96 const char kTraceAppSource[] = "enable-trace-app-source";
101 97
102 } // namespace switches 98 } // namespace switches
103 99
104 } // namespace extensions 100 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/common/switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698