| Index: ui/message_center/cocoa/popup_controller.h
|
| diff --git a/ui/message_center/cocoa/popup_controller.h b/ui/message_center/cocoa/popup_controller.h
|
| index 057756730591d6737ecbd88ef7da127f8efe321d..f16f03aad7b494bf773f8ea5ba4b910aaea58fcd 100644
|
| --- a/ui/message_center/cocoa/popup_controller.h
|
| +++ b/ui/message_center/cocoa/popup_controller.h
|
| @@ -25,7 +25,18 @@ class Notification;
|
| MESSAGE_CENTER_EXPORT
|
| @interface MCPopupController : NSWindowController {
|
| @private
|
| + // Global message center. Weak.
|
| + message_center::MessageCenter* messageCenter_;
|
| +
|
| + // The view controller that provide's the popup content view.
|
| scoped_nsobject<MCNotificationController> notificationController_;
|
| +
|
| + // If the swipe-away gesture received NSEventPhaseEnded.
|
| + BOOL swipeGestureEnded_;
|
| +
|
| + // The frame of the popup before any swipe animation started. Used to
|
| + // calculate the animating position of the window when swiping away.
|
| + NSRect originalFrame_;
|
| }
|
|
|
| // Designated initializer.
|
|
|