| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 UI_ARC_NOTIFICATION_ARC_NOTIFICATION_MANAGER_H_ | 5 #ifndef UI_ARC_NOTIFICATION_ARC_NOTIFICATION_MANAGER_H_ |
| 6 #define UI_ARC_NOTIFICATION_ARC_NOTIFICATION_MANAGER_H_ | 6 #define UI_ARC_NOTIFICATION_ARC_NOTIFICATION_MANAGER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <unordered_map> | 10 #include <unordered_map> |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 | 47 |
| 48 // Methods called from ArcNotificationItem: | 48 // Methods called from ArcNotificationItem: |
| 49 void SendNotificationRemovedFromChrome(const std::string& key); | 49 void SendNotificationRemovedFromChrome(const std::string& key); |
| 50 void SendNotificationClickedOnChrome(const std::string& key); | 50 void SendNotificationClickedOnChrome(const std::string& key); |
| 51 void SendNotificationButtonClickedOnChrome(const std::string& key, | 51 void SendNotificationButtonClickedOnChrome(const std::string& key, |
| 52 int button_index); | 52 int button_index); |
| 53 void CreateNotificationWindow(const std::string& key); | 53 void CreateNotificationWindow(const std::string& key); |
| 54 void CloseNotificationWindow(const std::string& key); | 54 void CloseNotificationWindow(const std::string& key); |
| 55 void OpenNotificationSettings(const std::string& key); | 55 void OpenNotificationSettings(const std::string& key); |
| 56 bool IsOpeningSettingsSupported() const; | 56 bool IsOpeningSettingsSupported() const; |
| 57 void SendNotificationToggleExpansionOnChrome(const std::string& key); |
| 57 | 58 |
| 58 private: | 59 private: |
| 59 const AccountId main_profile_id_; | 60 const AccountId main_profile_id_; |
| 60 message_center::MessageCenter* const message_center_; | 61 message_center::MessageCenter* const message_center_; |
| 61 | 62 |
| 62 using ItemMap = | 63 using ItemMap = |
| 63 std::unordered_map<std::string, std::unique_ptr<ArcNotificationItem>>; | 64 std::unordered_map<std::string, std::unique_ptr<ArcNotificationItem>>; |
| 64 ItemMap items_; | 65 ItemMap items_; |
| 65 | 66 |
| 66 bool ready_ = false; | 67 bool ready_ = false; |
| 67 | 68 |
| 68 mojo::Binding<mojom::NotificationsHost> binding_; | 69 mojo::Binding<mojom::NotificationsHost> binding_; |
| 69 | 70 |
| 70 DISALLOW_COPY_AND_ASSIGN(ArcNotificationManager); | 71 DISALLOW_COPY_AND_ASSIGN(ArcNotificationManager); |
| 71 }; | 72 }; |
| 72 | 73 |
| 73 } // namespace arc | 74 } // namespace arc |
| 74 | 75 |
| 75 #endif // UI_ARC_NOTIFICATION_ARC_NOTIFICATION_MANAGER_H_ | 76 #endif // UI_ARC_NOTIFICATION_ARC_NOTIFICATION_MANAGER_H_ |
| OLD | NEW |