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

Side by Side Diff: chromeos/chromeos_switches.cc

Issue 17437004: Implemented new channel switcher UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed FakeUpdateEngineClient. Created 7 years, 6 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chromeos/chromeos_switches.h" 5 #include "chromeos/chromeos_switches.h"
6 6
7 namespace chromeos { 7 namespace chromeos {
8 namespace switches { 8 namespace switches {
9 9
10 // Path for app's OEM manifest file. 10 // Path for app's OEM manifest file.
(...skipping 26 matching lines...) Expand all
37 37
38 // Disables Google Drive integration. 38 // Disables Google Drive integration.
39 const char kDisableDrive[] = "disable-drive"; 39 const char kDisableDrive[] = "disable-drive";
40 40
41 // Disable policy-configured local accounts. 41 // Disable policy-configured local accounts.
42 const char kDisableLocalAccounts[] = "disable-local-accounts"; 42 const char kDisableLocalAccounts[] = "disable-local-accounts";
43 43
44 // Avoid doing expensive animations upon login. 44 // Avoid doing expensive animations upon login.
45 const char kDisableLoginAnimations[] = "disable-login-animations"; 45 const char kDisableLoginAnimations[] = "disable-login-animations";
46 46
47 // Disable new channel switcher UI.
48 const char kDisableNewChannelSwitcherUI[] = "disable-new-channel-switcher-ui";
49
47 // Disable Quickoffice component app thus handlers won't be registered so 50 // Disable Quickoffice component app thus handlers won't be registered so
48 // it will be possible to install another version as normal app for testing. 51 // it will be possible to install another version as normal app for testing.
49 const char kDisableQuickofficeComponentApp[] = 52 const char kDisableQuickofficeComponentApp[] =
50 "disable-quickoffice-component-app"; 53 "disable-quickoffice-component-app";
51 54
52 // Disables fetching online CrOS EULA page, only static version is shown. 55 // Disables fetching online CrOS EULA page, only static version is shown.
53 const char kDisableOnlineEULA[] = "disable-cros-online-eula"; 56 const char kDisableOnlineEULA[] = "disable-cros-online-eula";
54 57
55 // Avoid doing animations upon oobe. 58 // Avoid doing animations upon oobe.
56 const char kDisableOobeAnimation[] = "disable-oobe-animation"; 59 const char kDisableOobeAnimation[] = "disable-oobe-animation";
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 // Enables usage of the new ManagedNetworkConfigurationHandler and 194 // Enables usage of the new ManagedNetworkConfigurationHandler and
192 // NetworkConfigurationHandler singletons. 195 // NetworkConfigurationHandler singletons.
193 const char kUseNewNetworkConfigurationHandlers[] = 196 const char kUseNewNetworkConfigurationHandlers[] =
194 "use-new-network-configuration-handlers"; 197 "use-new-network-configuration-handlers";
195 198
196 const char kUseNewNetworkConnectionHandler[] = 199 const char kUseNewNetworkConnectionHandler[] =
197 "use-new-network-connection-handler"; 200 "use-new-network-connection-handler";
198 201
199 } // namespace switches 202 } // namespace switches
200 } // namespace chromeos 203 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698