| Index: base/run_loop.cc
|
| diff --git a/base/run_loop.cc b/base/run_loop.cc
|
| index 991571eacdd979de1f9e07f593a1eaa88b38b776..2e80ff29e017a92cd8b4a071ab132119c25dfca8 100644
|
| --- a/base/run_loop.cc
|
| +++ b/base/run_loop.cc
|
| @@ -17,12 +17,14 @@ RunLoop::RunLoop()
|
| quit_called_(false),
|
| running_(false),
|
| quit_when_idle_received_(false) {
|
| -#if !defined(OS_MACOSX) && !defined(OS_ANDROID)
|
| +#if !defined(OS_MACOSX) && !defined(OS_ANDROID) && \
|
| + !defined(USE_GTK_MESSAGE_PUMP)
|
| dispatcher_ = NULL;
|
| #endif
|
| }
|
|
|
| -#if !defined(OS_MACOSX) && !defined(OS_ANDROID)
|
| +#if !defined(OS_MACOSX) && !defined(OS_ANDROID) && \
|
| + !defined(USE_GTK_MESSAGE_PUMP)
|
| RunLoop::RunLoop(MessageLoop::Dispatcher* dispatcher)
|
| : loop_(MessageLoop::current()),
|
| weak_factory_(this),
|
|
|