Index: base/message_pump_glib.h |
=================================================================== |
--- base/message_pump_glib.h (revision 4621) |
+++ base/message_pump_glib.h (working copy) |
@@ -91,6 +91,8 @@ |
// The work source. It is shared by all calls to Run and destroyed when |
// the message pump is destroyed. |
GSource* work_source_; |
+ // The GLib poll structure needs to be owned and freed by us. |
+ GPollFD* work_source_poll_info_; |
Evan Martin
2008/11/04 21:25:58
could it be a scoped_ptr?
not sure that "info" add
|
DISALLOW_COPY_AND_ASSIGN(MessagePumpForUI); |
}; |