| 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);
|
| }
|
|
|
|
|