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

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

Issue 2763913003: Hide the settings button on a notification in MNC. (Closed)
Patch Set: Created 3 years, 9 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 void OnToastCancelled(mojom::ArcToastDataPtr data) override; 46 void OnToastCancelled(mojom::ArcToastDataPtr data) override;
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 57
57 private: 58 private:
58 const AccountId main_profile_id_; 59 const AccountId main_profile_id_;
59 message_center::MessageCenter* const message_center_; 60 message_center::MessageCenter* const message_center_;
60 61
61 using ItemMap = 62 using ItemMap =
62 std::unordered_map<std::string, std::unique_ptr<ArcNotificationItem>>; 63 std::unordered_map<std::string, std::unique_ptr<ArcNotificationItem>>;
63 ItemMap items_; 64 ItemMap items_;
64 65
65 bool ready_ = false; 66 bool ready_ = false;
66 67
67 mojo::Binding<mojom::NotificationsHost> binding_; 68 mojo::Binding<mojom::NotificationsHost> binding_;
68 69
69 DISALLOW_COPY_AND_ASSIGN(ArcNotificationManager); 70 DISALLOW_COPY_AND_ASSIGN(ArcNotificationManager);
70 }; 71 };
71 72
72 } // namespace arc 73 } // namespace arc
73 74
74 #endif // UI_ARC_NOTIFICATION_ARC_NOTIFICATION_MANAGER_H_ 75 #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