Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6713)

Unified Diff: chrome/browser/crash_handler_host_linux.cc

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/crash_handler_host_linux.cc
diff --git a/chrome/browser/crash_handler_host_linux.cc b/chrome/browser/crash_handler_host_linux.cc
index 9298ebb2496db9a8c6364f81f081b8465b2d3dca..eec8d3a030c3ef698b42f02cb2157fc816704e93 100644
--- a/chrome/browser/crash_handler_host_linux.cc
+++ b/chrome/browser/crash_handler_host_linux.cc
@@ -99,11 +99,12 @@ CrashHandlerHostLinux::~CrashHandlerHostLinux() {
}
void CrashHandlerHostLinux::Init() {
- MessageLoopForIO* ml = MessageLoopForIO::current();
- CHECK(ml->WatchFileDescriptor(
- browser_socket_, true /* persistent */,
- MessageLoopForIO::WATCH_READ,
- &file_descriptor_watcher_, this));
+ base::MessageLoopForIO* ml = base::MessageLoopForIO::current();
+ CHECK(ml->WatchFileDescriptor(browser_socket_,
+ true /* persistent */,
+ base::MessageLoopForIO::WATCH_READ,
+ &file_descriptor_watcher_,
+ this));
ml->AddDestructionObserver(this);
}

Powered by Google App Engine
This is Rietveld 408576698