| OLD | NEW | 
|---|
| 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  Loading... | 
| 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  Loading... | 
| 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 | 
| OLD | NEW | 
|---|