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

Side by Side Diff: chromeos/chromeos_switches.cc

Issue 834073002: ChromeOS: Implement periodic timezone refresh on geolocation data. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update after review. Created 5 years, 11 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
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 #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
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 kEnableTimeZoneTrackingOption[] = "enable-timezone-tracking-option";
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698