diff options
Diffstat (limited to 'base/message_loop.cc')
-rw-r--r-- | base/message_loop.cc | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/base/message_loop.cc b/base/message_loop.cc index 48e05eb..4b95532 100644 --- a/base/message_loop.cc +++ b/base/message_loop.cc @@ -13,10 +13,6 @@ #include "base/string_util.h" #include "base/thread_local.h" -#if defined(OS_POSIX) -#include "base/message_pump_libevent.h" -#endif - // A lazily created thread local storage for quick access to a thread's message // loop, if one exists. This should be safe and free of static constructors. static base::LazyInstance<base::ThreadLocalPointer<MessageLoop> > lazy_tls_ptr( @@ -82,12 +78,6 @@ MessageLoop::MessageLoop(Type type) } else { pump_ = new base::MessagePumpWin(); } -#elif defined(OS_POSIX) - if (type_ == TYPE_IO) { - pump_ = new base::MessagePumpLibevent(); - } else { - pump_ = new base::MessagePumpDefault(); - } #else pump_ = new base::MessagePumpDefault(); #endif @@ -571,14 +561,4 @@ void MessageLoopForIO::WatchObject(HANDLE object, Watcher* watcher) { pump_win()->WatchObject(object, watcher); } -#elif defined(OS_POSIX) - -void MessageLoopForIO::WatchSocket(int socket, short interest_mask, - struct event* e, Watcher* watcher) { - pump_libevent()->WatchSocket(socket, interest_mask, e, watcher); -} - -void MessageLoopForIO::UnwatchSocket(struct event* e) { - pump_libevent()->UnwatchSocket(e); -} -#endif +#endif // defined(OS_WIN) |