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

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: 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/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 5e91679fd7ad7dddd6add80e3ac371b20a233321..e5898610fa61c051f42b10c1d8f15000ba42ba1c 100644
--- a/chrome/browser/extensions/api/messaging/native_message_process_host.h
+++ b/chrome/browser/extensions/api/messaging/native_message_process_host.h
@@ -35,9 +35,9 @@ namespace extensions {
// thread.
class NativeMessageProcessHost
#if defined(OS_POSIX)
- : public MessageLoopForIO::Watcher
+ : public base::MessageLoopForIO::Watcher
#endif // !defined(OS_POSIX)
- {
+ {
public:
// Interface for the object that receives messages from the native process.
class Client {
@@ -135,7 +135,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