summaryrefslogtreecommitdiffstats
path: root/chrome/browser/geolocation
diff options
context:
space:
mode:
authortedvessenes@gmail.com <tedvessenes@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-17 17:47:34 +0000
committertedvessenes@gmail.com <tedvessenes@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-17 17:47:34 +0000
commitdf32e89c74d12127019a6f11775be9c7c31f3d21 (patch)
tree705fbb3ee8142e300f9748c8b51b84630f7e6b5f /chrome/browser/geolocation
parent155c8229033778e2691cb9e457163c98f97b2f78 (diff)
downloadchromium_src-df32e89c74d12127019a6f11775be9c7c31f3d21.zip
chromium_src-df32e89c74d12127019a6f11775be9c7c31f3d21.tar.gz
chromium_src-df32e89c74d12127019a6f11775be9c7c31f3d21.tar.bz2
Update use of TimeDelta in chrome/browser/*, ui/views/*, and other places.
R=ben@chromium.org BUG=108171 Review URL: https://chromiumcodereview.appspot.com/10026013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137682 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/geolocation')
-rw-r--r--chrome/browser/geolocation/wifi_data_provider_chromeos.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/geolocation/wifi_data_provider_chromeos.cc b/chrome/browser/geolocation/wifi_data_provider_chromeos.cc
index 9ef3c9f..a415c66 100644
--- a/chrome/browser/geolocation/wifi_data_provider_chromeos.cc
+++ b/chrome/browser/geolocation/wifi_data_provider_chromeos.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -215,7 +215,7 @@ void WifiDataProviderChromeOs::ScheduleNextScan(int interval) {
BrowserThread::UI,
FROM_HERE,
base::Bind(&WifiDataProviderChromeOs::DoWifiScanTaskOnUIThread, this),
- interval);
+ base::TimeDelta::FromMilliseconds(interval));
}
void WifiDataProviderChromeOs::ScheduleStop() {