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

Unified Diff: chrome/browser/extensions/api/messaging/native_message_process_host.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/extensions/api/messaging/native_message_process_host.h
diff --git a/chrome/browser/extensions/api/messaging/native_message_process_host.h b/chrome/browser/extensions/api/messaging/native_message_process_host.h
index 1d2475b5299287718052bf45fe0ea90026ae8df4..987055fc24e3402f35bc50c50662cdec76edc986 100644
--- a/chrome/browser/extensions/api/messaging/native_message_process_host.h
+++ b/chrome/browser/extensions/api/messaging/native_message_process_host.h
@@ -34,7 +34,7 @@ namespace extensions {
// thread.
class NativeMessageProcessHost
#if defined(OS_POSIX)
- : public MessageLoopForIO::Watcher
+ : public base::MessageLoopForIO::Watcher
#endif // !defined(OS_POSIX)
{
public:
@@ -134,7 +134,7 @@ class NativeMessageProcessHost
scoped_ptr<net::FileStream> read_stream_;
#if defined(OS_POSIX)
- MessageLoopForIO::FileDescriptorWatcher read_watcher_;
+ base::MessageLoopForIO::FileDescriptorWatcher read_watcher_;
#endif // !defined(OS_POSIX)
// Write stream.

Powered by Google App Engine
This is Rietveld 408576698