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

Unified Diff: chrome/browser/crash_handler_host_linux.h

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase again Created 7 years, 7 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.h
diff --git a/chrome/browser/crash_handler_host_linux.h b/chrome/browser/crash_handler_host_linux.h
index f0db83e98dcc84831256f1bb53200ec41b71701a..bcd9dd7303a453924ef8efd43a1431adbd22d720 100644
--- a/chrome/browser/crash_handler_host_linux.h
+++ b/chrome/browser/crash_handler_host_linux.h
@@ -34,8 +34,8 @@ template <typename T> struct DefaultSingletonTraits;
// Processes signal that they need to be dumped by sending a datagram over a
// UNIX domain socket. All processes of the same type share the client end of
// this socket which is installed in their descriptor table before exec.
-class CrashHandlerHostLinux : public MessageLoopForIO::Watcher,
- public MessageLoop::DestructionObserver {
+class CrashHandlerHostLinux : public base::MessageLoopForIO::Watcher,
+ public base::MessageLoop::DestructionObserver {
public:
// Get the file descriptor which processes should be given in order to signal
// crashes to the browser.
@@ -87,7 +87,7 @@ class CrashHandlerHostLinux : public MessageLoopForIO::Watcher,
int browser_socket_;
#if defined(USE_LINUX_BREAKPAD)
- MessageLoopForIO::FileDescriptorWatcher file_descriptor_watcher_;
+ base::MessageLoopForIO::FileDescriptorWatcher file_descriptor_watcher_;
scoped_ptr<base::Thread> uploader_thread_;
bool shutting_down_;
#endif
« no previous file with comments | « chrome/browser/content_settings/host_content_settings_map_unittest.cc ('k') | chrome/browser/crash_handler_host_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698