Index: chrome/browser/ui/cocoa/status_bubble_mac.mm |
diff --git a/chrome/browser/ui/cocoa/status_bubble_mac.mm b/chrome/browser/ui/cocoa/status_bubble_mac.mm |
index ddf00ace198ee221a7d3f76e1661053113d40bcc..6fcbc2f8c6ab2164b7206ab36ffe48f965b559e6 100644 |
--- a/chrome/browser/ui/cocoa/status_bubble_mac.mm |
+++ b/chrome/browser/ui/cocoa/status_bubble_mac.mm |
@@ -143,17 +143,17 @@ const CGFloat kExpansionDurationSeconds = 0.125; |
@end |
StatusBubbleMac::StatusBubbleMac(NSWindow* parent, id delegate) |
- : timer_factory_(this), |
- expand_timer_factory_(this), |
- completion_handler_factory_(this), |
- parent_(parent), |
+ : parent_(parent), |
delegate_(delegate), |
window_(nil), |
status_text_(nil), |
url_text_(nil), |
state_(kBubbleHidden), |
immediate_(false), |
- is_expanded_(false) { |
+ is_expanded_(false), |
+ timer_factory_(this), |
+ expand_timer_factory_(this), |
+ completion_handler_factory_(this) { |
Create(); |
Attach(); |
} |