Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: ui/arc/notification/arc_notification_manager.h

Issue 2767253005: Implement TOGGLE_EXPANSION action for the ARC notifications. (Closed)
Patch Set: rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « ui/arc/notification/arc_notification_item.cc ('k') | ui/arc/notification/arc_notification_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698