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