Index: base/run_loop.cc |
=================================================================== |
--- base/run_loop.cc (revision 228862) |
+++ base/run_loop.cc (working copy) |
@@ -10,13 +10,13 @@ |
RunLoop::RunLoop() |
: loop_(MessageLoop::current()), |
+ weak_factory_(this), |
previous_run_loop_(NULL), |
run_depth_(0), |
run_called_(false), |
quit_called_(false), |
running_(false), |
- quit_when_idle_received_(false), |
- weak_factory_(this) { |
+ quit_when_idle_received_(false) { |
#if !defined(OS_MACOSX) && !defined(OS_ANDROID) && \ |
!defined(USE_GTK_MESSAGE_PUMP) |
dispatcher_ = NULL; |
@@ -27,14 +27,14 @@ |
!defined(USE_GTK_MESSAGE_PUMP) |
RunLoop::RunLoop(MessageLoop::Dispatcher* dispatcher) |
: loop_(MessageLoop::current()), |
+ weak_factory_(this), |
previous_run_loop_(NULL), |
dispatcher_(dispatcher), |
run_depth_(0), |
run_called_(false), |
quit_called_(false), |
running_(false), |
- quit_when_idle_received_(false), |
- weak_factory_(this) { |
+ quit_when_idle_received_(false) { |
} |
#endif |