From f8b3ef8aab85985cb74d748112a1a3ec8e2b7ed8 Mon Sep 17 00:00:00 2001 From: "tfarina@chromium.org" Date: Mon, 11 Oct 2010 02:45:52 +0000 Subject: Rename ChromeThread to BrowserThread Part15: - Rename entries in more 40 files under chrome/browser. BUG=56926 TEST=trybots Review URL: http://codereview.chromium.org/3704001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62130 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/process_singleton_linux.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chrome/browser/process_singleton_linux.cc') diff --git a/chrome/browser/process_singleton_linux.cc b/chrome/browser/process_singleton_linux.cc index da80b2b..36cced1 100644 --- a/chrome/browser/process_singleton_linux.cc +++ b/chrome/browser/process_singleton_linux.cc @@ -601,7 +601,7 @@ void ProcessSingleton::LinuxWatcher::OnFileCanReadWithoutBlocking(int fd) { } void ProcessSingleton::LinuxWatcher::StartListening(int socket) { - DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO)); + DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); // Watch for client connections on this socket. MessageLoopForIO* ml = MessageLoopForIO::current(); ml->AddDestructionObserver(this); @@ -978,7 +978,7 @@ bool ProcessSingleton::Create() { if (listen(sock, 5) < 0) NOTREACHED() << "listen failed: " << safe_strerror(errno); - // Normally we would use ChromeThread, but the IO thread hasn't started yet. + // Normally we would use BrowserThread, but the IO thread hasn't started yet. // Using g_browser_process, we start the thread so we can listen on the // socket. MessageLoop* ml = g_browser_process->io_thread()->message_loop(); -- cgit v1.1