| Index: base/run_loop.cc
|
| diff --git a/base/run_loop.cc b/base/run_loop.cc
|
| index 2aa4def95706a24df2075205c032021543709ab0..e85efee970f0af4446311f4498d3e1a1d999ae05 100644
|
| --- a/base/run_loop.cc
|
| +++ b/base/run_loop.cc
|
| @@ -7,10 +7,6 @@
|
| #include "base/bind.h"
|
| #include "base/tracked_objects.h"
|
|
|
| -#if defined(OS_WIN)
|
| -#include "base/message_loop/message_pump_dispatcher.h"
|
| -#endif
|
| -
|
| namespace base {
|
|
|
| RunLoop::RunLoop()
|
| @@ -22,24 +18,7 @@ RunLoop::RunLoop()
|
| running_(false),
|
| quit_when_idle_received_(false),
|
| weak_factory_(this) {
|
| -#if defined(OS_WIN)
|
| - dispatcher_ = NULL;
|
| -#endif
|
| -}
|
| -
|
| -#if defined(OS_WIN)
|
| -RunLoop::RunLoop(MessagePumpDispatcher* dispatcher)
|
| - : loop_(MessageLoop::current()),
|
| - previous_run_loop_(NULL),
|
| - dispatcher_(dispatcher),
|
| - run_depth_(0),
|
| - run_called_(false),
|
| - quit_called_(false),
|
| - running_(false),
|
| - quit_when_idle_received_(false),
|
| - weak_factory_(this) {
|
| }
|
| -#endif
|
|
|
| RunLoop::~RunLoop() {
|
| }
|
|
|