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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 // Indicates that a stub implementation of CrosSettings that stores settings in | 187 // Indicates that a stub implementation of CrosSettings that stores settings in |
188 // memory without signing should be used, treating current user as the owner. | 188 // memory without signing should be used, treating current user as the owner. |
189 // This option is for testing the chromeos build of chrome on the desktop only. | 189 // This option is for testing the chromeos build of chrome on the desktop only. |
190 const char kStubCrosSettings[] = "stub-cros-settings"; | 190 const char kStubCrosSettings[] = "stub-cros-settings"; |
191 | 191 |
192 // Enables usage of the new ManagedNetworkConfigurationHandler and | 192 // Enables usage of the new ManagedNetworkConfigurationHandler and |
193 // NetworkConfigurationHandler singletons. | 193 // NetworkConfigurationHandler singletons. |
194 const char kUseNewNetworkConfigurationHandlers[] = | 194 const char kUseNewNetworkConfigurationHandlers[] = |
195 "use-new-network-configuration-handlers"; | 195 "use-new-network-configuration-handlers"; |
196 | 196 |
197 const char kUseNewNetworkConnectionHandler[] = | |
198 "use-new-network-connection-handler"; | |
199 | |
200 } // namespace switches | 197 } // namespace switches |
201 } // namespace chromeos | 198 } // namespace chromeos |
OLD | NEW |