Index: base/message_pump_glib.cc |
diff --git a/base/message_pump_glib.cc b/base/message_pump_glib.cc |
index fa5b726e9bfd5c3774ea99b7c91e417efe048e7a..5bad57f59fb965fb6c7c3b7d3e5cde0abde244dc 100644 |
--- a/base/message_pump_glib.cc |
+++ b/base/message_pump_glib.cc |
@@ -124,22 +124,6 @@ GSourceFuncs WorkSourceFuncs = { |
namespace base { |
-struct MessagePumpForUI::RunState { |
- Delegate* delegate; |
- Dispatcher* dispatcher; |
- |
- // Used to flag that the current Run() invocation should return ASAP. |
- bool should_quit; |
- |
- // Used to count how many Run() invocations are on the stack. |
- int run_depth; |
- |
- // This keeps the state of whether the pump got signaled that there was new |
- // work to be done. Since we eat the message on the wake up pipe as soon as |
- // we get it, we keep that state here to stay consistent. |
- bool has_work; |
-}; |
- |
MessagePumpForUI::MessagePumpForUI() |
: state_(NULL), |
context_(g_main_context_default()), |