diff options
author | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-04 00:57:39 +0000 |
---|---|---|
committer | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-04 00:57:39 +0000 |
commit | ac4c668a5d726a0aa77097b11c4e63b188d3b47c (patch) | |
tree | 08d345b0170311401ef03c9f5342b7ea46752420 /chrome/browser/service | |
parent | 1f139d1513ac3332cf940820e8be5195ca21333a (diff) | |
download | chromium_src-ac4c668a5d726a0aa77097b11c4e63b188d3b47c.zip chromium_src-ac4c668a5d726a0aa77097b11c4e63b188d3b47c.tar.gz chromium_src-ac4c668a5d726a0aa77097b11c4e63b188d3b47c.tar.bz2 |
And now NewRunnableMethod(), you die.
Kill off NewRunnableMethod() and remove silly declarations of unused ScopedRunnableMethodFactory(s).
BUG=none
TEST=existing.
Review URL: http://codereview.chromium.org/9034032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116250 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/service')
-rw-r--r-- | chrome/browser/service/service_process_control.cc | 4 | ||||
-rw-r--r-- | chrome/browser/service/service_process_control_browsertest.cc | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/chrome/browser/service/service_process_control.cc b/chrome/browser/service/service_process_control.cc index fdaa7e2..f7a1eed 100644 --- a/chrome/browser/service/service_process_control.cc +++ b/chrome/browser/service/service_process_control.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. @@ -256,8 +256,6 @@ ServiceProcessControl* ServiceProcessControl::GetInstance() { return Singleton<ServiceProcessControl>::get(); } -DISABLE_RUNNABLE_METHOD_REFCOUNT(ServiceProcessControl); - ServiceProcessControl::Launcher::Launcher(ServiceProcessControl* process, CommandLine* cmd_line) : process_(process), diff --git a/chrome/browser/service/service_process_control_browsertest.cc b/chrome/browser/service/service_process_control_browsertest.cc index f269b85..638ec51 100644 --- a/chrome/browser/service/service_process_control_browsertest.cc +++ b/chrome/browser/service/service_process_control_browsertest.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. @@ -203,5 +203,3 @@ IN_PROC_BROWSER_TEST_F(ServiceProcessControlBrowserTest, CheckPid) { // Disconnect from service process. ServiceProcessControl::GetInstance()->Disconnect(); } - -DISABLE_RUNNABLE_METHOD_REFCOUNT(ServiceProcessControlBrowserTest); |