OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_MESSAGE_CENTER_TRAY_BRIDGE_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_MESSAGE_CENTER_TRAY_BRIDGE_H_ |
6 #define CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_MESSAGE_CENTER_TRAY_BRIDGE_H_ | 6 #define CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_MESSAGE_CENTER_TRAY_BRIDGE_H_ |
7 | 7 |
8 #import <AppKit/AppKit.h> | 8 #import <AppKit/AppKit.h> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 21 matching lines...) Expand all Loading... |
32 message_center::MessageCenter* message_center); | 32 message_center::MessageCenter* message_center); |
33 virtual ~MessageCenterTrayBridge(); | 33 virtual ~MessageCenterTrayBridge(); |
34 | 34 |
35 // message_center::MessageCenterTrayDelegate: | 35 // message_center::MessageCenterTrayDelegate: |
36 virtual void OnMessageCenterTrayChanged() OVERRIDE; | 36 virtual void OnMessageCenterTrayChanged() OVERRIDE; |
37 virtual bool ShowPopups() OVERRIDE; | 37 virtual bool ShowPopups() OVERRIDE; |
38 virtual void HidePopups() OVERRIDE; | 38 virtual void HidePopups() OVERRIDE; |
39 virtual bool ShowMessageCenter() OVERRIDE; | 39 virtual bool ShowMessageCenter() OVERRIDE; |
40 virtual void HideMessageCenter() OVERRIDE; | 40 virtual void HideMessageCenter() OVERRIDE; |
41 virtual bool ShowNotifierSettings() OVERRIDE; | 41 virtual bool ShowNotifierSettings() OVERRIDE; |
| 42 virtual bool IsContextMenuEnabled() const OVERRIDE; |
42 virtual message_center::MessageCenterTray* GetMessageCenterTray() OVERRIDE; | 43 virtual message_center::MessageCenterTray* GetMessageCenterTray() OVERRIDE; |
43 | 44 |
44 message_center::MessageCenter* message_center() { return message_center_; } | 45 message_center::MessageCenter* message_center() { return message_center_; } |
45 | 46 |
46 private: | 47 private: |
47 friend class MessageCenterTrayBridgeTest; | 48 friend class MessageCenterTrayBridgeTest; |
48 | 49 |
49 // Updates the unread count on the status item. | 50 // Updates the unread count on the status item. |
50 void UpdateStatusItem(); | 51 void UpdateStatusItem(); |
51 | 52 |
(...skipping 15 matching lines...) Expand all Loading... |
67 // Obj-C controller for the on-screen popup notifications. | 68 // Obj-C controller for the on-screen popup notifications. |
68 base::scoped_nsobject<MCPopupCollection> popup_collection_; | 69 base::scoped_nsobject<MCPopupCollection> popup_collection_; |
69 | 70 |
70 // Weak pointer factory to posts tasks to self. | 71 // Weak pointer factory to posts tasks to self. |
71 base::WeakPtrFactory<MessageCenterTrayBridge> weak_ptr_factory_; | 72 base::WeakPtrFactory<MessageCenterTrayBridge> weak_ptr_factory_; |
72 | 73 |
73 DISALLOW_COPY_AND_ASSIGN(MessageCenterTrayBridge); | 74 DISALLOW_COPY_AND_ASSIGN(MessageCenterTrayBridge); |
74 }; | 75 }; |
75 | 76 |
76 #endif // CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_MESSAGE_CENTER_TRAY_BRIDGE_H_ | 77 #endif // CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_MESSAGE_CENTER_TRAY_BRIDGE_H_ |
OLD | NEW |