| Index: base/run_loop.h
|
| diff --git a/base/run_loop.h b/base/run_loop.h
|
| index 42a516000e1d7a37d73a743dec6c1bcd002a45ee..f5ee5c346653f3b31cff958fbfc6a45fdad1bc96 100644
|
| --- a/base/run_loop.h
|
| +++ b/base/run_loop.h
|
| @@ -27,12 +27,14 @@ class MessagePumpUIApplication;
|
| class BASE_EXPORT RunLoop {
|
| public:
|
| RunLoop();
|
| -#if !defined(OS_MACOSX) && !defined(OS_ANDROID)
|
| +#if !defined(OS_MACOSX) && !defined(OS_ANDROID) && \
|
| + !defined(USE_GTK_MESSAGE_PUMP)
|
| explicit RunLoop(MessageLoop::Dispatcher* dispatcher);
|
| #endif
|
| ~RunLoop();
|
|
|
| -#if !defined(OS_MACOSX) && !defined(OS_ANDROID)
|
| +#if !defined(OS_MACOSX) && !defined(OS_ANDROID) && \
|
| + !defined(USE_GTK_MESSAGE_PUMP)
|
| void set_dispatcher(MessageLoop::Dispatcher* dispatcher) {
|
| dispatcher_ = dispatcher;
|
| }
|
| @@ -98,7 +100,8 @@ class BASE_EXPORT RunLoop {
|
| // Parent RunLoop or NULL if this is the top-most RunLoop.
|
| RunLoop* previous_run_loop_;
|
|
|
| -#if !defined(OS_MACOSX) && !defined(OS_ANDROID)
|
| +#if !defined(OS_MACOSX) && !defined(OS_ANDROID) && \
|
| + !defined(USE_GTK_MESSAGE_PUMP)
|
| MessageLoop::Dispatcher* dispatcher_;
|
| #endif
|
|
|
|
|