diff options
author | dcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-02 20:03:05 +0000 |
---|---|---|
committer | dcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-02 20:03:05 +0000 |
commit | cff06c5779f85713bc4b09ce110ec26544322d64 (patch) | |
tree | 4c0fd2e6a6d7f89a1d0dc2e08d3a6c94881789c6 /chrome/browser/process_singleton_linux.cc | |
parent | ef245707b0c98fbf73953d60ceca19b5f089ed75 (diff) | |
download | chromium_src-cff06c5779f85713bc4b09ce110ec26544322d64.zip chromium_src-cff06c5779f85713bc4b09ce110ec26544322d64.tar.gz chromium_src-cff06c5779f85713bc4b09ce110ec26544322d64.tar.bz2 |
Remove DeleteTask and convert remaining users.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/9015021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116107 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/process_singleton_linux.cc')
-rw-r--r-- | chrome/browser/process_singleton_linux.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/process_singleton_linux.cc b/chrome/browser/process_singleton_linux.cc index d915637..eda06a0 100644 --- a/chrome/browser/process_singleton_linux.cc +++ b/chrome/browser/process_singleton_linux.cc @@ -66,6 +66,7 @@ #include "base/file_util.h" #include "base/logging.h" #include "base/message_loop.h" +#include "base/message_loop_helpers.h" #include "base/path_service.h" #include "base/process_util.h" #include "base/rand_util.h" @@ -561,7 +562,7 @@ class ProcessSingleton::LinuxWatcher private: friend struct BrowserThread::DeleteOnThread<BrowserThread::IO>; - friend class DeleteTask<ProcessSingleton::LinuxWatcher>; + friend class base::DeleteHelper<ProcessSingleton::LinuxWatcher>; virtual ~LinuxWatcher() { DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |