summaryrefslogtreecommitdiffstats
path: root/chrome/service/service_process.cc
diff options
context:
space:
mode:
authortedvessenes@gmail.com <tedvessenes@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-12 22:20:47 +0000
committertedvessenes@gmail.com <tedvessenes@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-12 22:20:47 +0000
commit8f8e5c3e2a5f55b904e89afae9eb96a5c62482e1 (patch)
treea3c8012c194c11bb78969bda6cb4562c9208eb6d /chrome/service/service_process.cc
parenta7656c6a53cd7ef64c7a11e6b01b23c7729518be (diff)
downloadchromium_src-8f8e5c3e2a5f55b904e89afae9eb96a5c62482e1.zip
chromium_src-8f8e5c3e2a5f55b904e89afae9eb96a5c62482e1.tar.gz
chromium_src-8f8e5c3e2a5f55b904e89afae9eb96a5c62482e1.tar.bz2
Convert use of int ms to TimeDelta in files owned by ajwong.
R=ajwong@chromium.org BUG=108171 TEST= Review URL: http://codereview.chromium.org/9187023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117531 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/service/service_process.cc')
-rw-r--r--chrome/service/service_process.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/service/service_process.cc b/chrome/service/service_process.cc
index d2fa127..7a191b6 100644
--- a/chrome/service/service_process.cc
+++ b/chrome/service/service_process.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.
@@ -45,7 +45,7 @@ namespace {
// Delay in millseconds after the last service is disabled before we attempt
// a shutdown.
-const int64 kShutdownDelay = 60000;
+const base::TimeDelta kShutdownDelay = base::TimeDelta::FromMinutes(1);
const char kDefaultServiceProcessLocale[] = "en-US";