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 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 | 8 |
9 namespace chromeos { | 9 namespace chromeos { |
10 namespace switches { | 10 namespace switches { |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 // stored. | 277 // stored. |
278 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; | 278 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; |
279 | 279 |
280 // Screenshot testing: specifies the directoru where artifacts will be stored. | 280 // Screenshot testing: specifies the directoru where artifacts will be stored. |
281 const char kArtifactsDir[] = "artifacts-dir"; | 281 const char kArtifactsDir[] = "artifacts-dir"; |
282 | 282 |
283 // Bypass proxy for captive portal authorization. | 283 // Bypass proxy for captive portal authorization. |
284 const char kEnableCaptivePortalBypassProxy[] = | 284 const char kEnableCaptivePortalBypassProxy[] = |
285 "enable-captive-portal-bypass-proxy"; | 285 "enable-captive-portal-bypass-proxy"; |
286 | 286 |
| 287 // Enable automatic timezone update. |
| 288 const char kEnableTimeZoneTracking[] = "enable-timezone-tracking"; |
| 289 |
287 bool WakeOnWifiEnabled() { | 290 bool WakeOnWifiEnabled() { |
288 return !base::CommandLine::ForCurrentProcess()->HasSwitch(kDisableWakeOnWifi); | 291 return !base::CommandLine::ForCurrentProcess()->HasSwitch(kDisableWakeOnWifi); |
289 } | 292 } |
290 | 293 |
291 } // namespace switches | 294 } // namespace switches |
292 } // namespace chromeos | 295 } // namespace chromeos |
OLD | NEW |