summaryrefslogtreecommitdiffstats
path: root/base/message_loop.h
diff options
context:
space:
mode:
authorevanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-18 00:23:24 +0000
committerevanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-18 00:23:24 +0000
commit35aa85ac00fbfa16bd9f52b05e47eb09a3b6a0ce (patch)
tree1f42710b6f0e4250bca214f340ab752491f6d20a /base/message_loop.h
parentdab8619b4848bb10dfe78a3f0c59d6e661ec9610 (diff)
downloadchromium_src-35aa85ac00fbfa16bd9f52b05e47eb09a3b6a0ce.zip
chromium_src-35aa85ac00fbfa16bd9f52b05e47eb09a3b6a0ce.tar.gz
chromium_src-35aa85ac00fbfa16bd9f52b05e47eb09a3b6a0ce.tar.bz2
Revert "Make tcp_client_socket_unittest pass on Linux."
This reverts commit d63170654d935f5a8ff6517bfacb60893f186a6b. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2347 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/message_loop.h')
-rw-r--r--base/message_loop.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/base/message_loop.h b/base/message_loop.h
index 51093c6..a65a2e8 100644
--- a/base/message_loop.h
+++ b/base/message_loop.h
@@ -21,8 +21,6 @@
// We need this to declare base::MessagePumpWin::Dispatcher, which we should
// really just eliminate.
#include "base/message_pump_win.h"
-#elif defined(OS_POSIX)
-#include "base/message_pump_libevent.h"
#endif
// A MessageLoop is used to process events for a particular thread. There is
@@ -276,11 +274,6 @@ class MessageLoop : public base::MessagePump::Delegate {
base::MessagePumpWin* pump_win() {
return static_cast<base::MessagePumpWin*>(pump_.get());
}
-#elif defined(OS_POSIX)
- base::MessagePumpLibevent* pump_libevent() {
- return static_cast<base::MessagePumpLibevent*>(pump_.get());
- }
- protected:
#endif
// A function to encapsulate all the exception handling capability in the
@@ -457,14 +450,6 @@ class MessageLoopForIO : public MessageLoop {
// Please see MessagePumpWin for definitions of these methods.
void WatchObject(HANDLE object, Watcher* watcher);
-
-#elif defined(OS_POSIX)
- typedef base::MessagePumpLibevent::Watcher Watcher;
-
- // Please see MessagePumpLibevent for definitions of these methods.
- void WatchSocket(int socket, short interest_mask,
- struct event* e, Watcher* watcher);
- void UnwatchSocket(struct event* e);
#endif // defined(OS_WIN)
};