From df32e89c74d12127019a6f11775be9c7c31f3d21 Mon Sep 17 00:00:00 2001 From: "tedvessenes@gmail.com" Date: Thu, 17 May 2012 17:47:34 +0000 Subject: 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 --- chrome/browser/geolocation/wifi_data_provider_chromeos.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chrome/browser/geolocation') 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() { -- cgit v1.1