diff options
Diffstat (limited to 'base/run_loop.cc')
-rw-r--r-- | base/run_loop.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/base/run_loop.cc b/base/run_loop.cc index 8666ee4..45723bb 100644 --- a/base/run_loop.cc +++ b/base/run_loop.cc @@ -17,14 +17,12 @@ RunLoop::RunLoop() running_(false), quit_when_idle_received_(false), weak_factory_(this) { -#if !defined(OS_MACOSX) && !defined(OS_ANDROID) && \ - !defined(USE_GTK_MESSAGE_PUMP) +#if defined(USE_AURA) dispatcher_ = NULL; #endif } -#if !defined(OS_MACOSX) && !defined(OS_ANDROID) && \ - !defined(USE_GTK_MESSAGE_PUMP) +#if defined(USE_AURA) RunLoop::RunLoop(MessageLoop::Dispatcher* dispatcher) : loop_(MessageLoop::current()), previous_run_loop_(NULL), |