Index: gin/modules/timer.h |
diff --git a/gin/modules/timer.h b/gin/modules/timer.h |
index e2bed2e56fbee24cbed89949c97a9e0f6630be7b..da17fe14822886cc73bd6c03d2bb728360afbbe9 100644 |
--- a/gin/modules/timer.h |
+++ b/gin/modules/timer.h |
@@ -38,9 +38,10 @@ class GIN_EXPORT Timer : public Wrappable<Timer> { |
virtual ~Timer(); |
void OnTimerFired(); |
- base::WeakPtrFactory<Timer> weak_factory_; |
base::Timer timer_; |
base::WeakPtr<gin::Runner> runner_; |
+ base::WeakPtrFactory<Timer> weak_factory_; |
+ |
jochen (gone - plz use gerrit)
2014/09/19 13:30:36
nit. no empty line
while you touch this class any
|
}; |