summaryrefslogtreecommitdiffstats
path: root/dbus
diff options
context:
space:
mode:
authortedvessenes@gmail.com <tedvessenes@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-16 01:46:26 +0000
committertedvessenes@gmail.com <tedvessenes@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-16 01:46:26 +0000
commit14b95f1e35ee10b56b0ec6b88d2f563d5c14e99b (patch)
treebf18cab4afa4013ece3600c10daadaeb62428291 /dbus
parent24469df740672071da7cb0a44386fff9d9cacb7f (diff)
downloadchromium_src-14b95f1e35ee10b56b0ec6b88d2f563d5c14e99b.zip
chromium_src-14b95f1e35ee10b56b0ec6b88d2f563d5c14e99b.tar.gz
chromium_src-14b95f1e35ee10b56b0ec6b88d2f563d5c14e99b.tar.bz2
Convert use of int ms to TimeDelta in files owned by brettw.
R=brettw@chromium.org BUG=108171 TEST= Review URL: http://codereview.chromium.org/9185026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117824 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'dbus')
-rw-r--r--dbus/test_service.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbus/test_service.cc b/dbus/test_service.cc
index ea8e360..714c09b 100644
--- a/dbus/test_service.cc
+++ b/dbus/test_service.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.
@@ -190,7 +190,7 @@ void TestService::Echo(MethodCall* method_call,
void TestService::SlowEcho(
MethodCall* method_call,
dbus::ExportedObject::ResponseSender response_sender) {
- base::PlatformThread::Sleep(TestTimeouts::tiny_timeout_ms());
+ base::PlatformThread::Sleep(TestTimeouts::tiny_timeout());
Echo(method_call, response_sender);
}