diff options
author | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-17 15:24:53 +0000 |
---|---|---|
committer | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-17 15:24:53 +0000 |
commit | a9a37e062d73ea5acb53d7ed1e7204d488e67211 (patch) | |
tree | d394ced52c2131913f0fefba4d5677b5c8b94924 /content/browser/geolocation/wifi_data_provider_common.cc | |
parent | 4984c9ffb4f6b7c3f9bb4c02dbdf1d6fcf09884c (diff) | |
download | chromium_src-a9a37e062d73ea5acb53d7ed1e7204d488e67211.zip chromium_src-a9a37e062d73ea5acb53d7ed1e7204d488e67211.tar.gz chromium_src-a9a37e062d73ea5acb53d7ed1e7204d488e67211.tar.bz2 |
Revert r117895 "Convert use of int ms to TimeDelta in files owned by bulach."
This broke compilation on Windows debug.
R=bulach@chromium.org
BUG=
TEST=
Review URL: https://chromiumcodereview.appspot.com/9242010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117897 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/geolocation/wifi_data_provider_common.cc')
-rw-r--r-- | content/browser/geolocation/wifi_data_provider_common.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/browser/geolocation/wifi_data_provider_common.cc b/content/browser/geolocation/wifi_data_provider_common.cc index 7156d12..16c11df 100644 --- a/content/browser/geolocation/wifi_data_provider_common.cc +++ b/content/browser/geolocation/wifi_data_provider_common.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 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. @@ -105,5 +105,5 @@ void WifiDataProviderCommon::ScheduleNextScan(int interval) { FROM_HERE, base::Bind(&WifiDataProviderCommon::DoWifiScanTask, weak_factory_.GetWeakPtr()), - base::TimeDelta::FromMilliseconds(interval)); + interval); } |