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

Unified Diff: ui/message_center/notification_list_unittest.cc

Issue 12326091: Made notification center notifications collapsed and expandable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase, rebase, and rebase again! Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/message_center/notification_list.cc ('k') | ui/message_center/views/message_bubble_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/message_center/notification_list_unittest.cc
diff --git a/ui/message_center/notification_list_unittest.cc b/ui/message_center/notification_list_unittest.cc
index 4cf791e2ee3670f8f107d8a95048b0e3fc84adac..aa4ab660465bd5bb3ff7a5a778793b486af96ddb 100644
--- a/ui/message_center/notification_list_unittest.cc
+++ b/ui/message_center/notification_list_unittest.cc
@@ -27,42 +27,15 @@ class MockNotificationListDelegate : public NotificationList::Delegate {
}
private:
- // NotificationList::Delegate overrides:
+ // Overridden from NotificationList::Delegate:
virtual void SendRemoveNotification(const std::string& id,
bool by_user) OVERRIDE {
send_remove_count_++;
}
- virtual void SendRemoveAllNotifications(bool by_user) OVERRIDE {
- }
-
- virtual void DisableNotificationByExtension(const std::string& id) OVERRIDE {
- }
-
- virtual void DisableNotificationByUrl(const std::string& id) OVERRIDE {
- }
-
- virtual void ShowNotificationSettings(const std::string& id) OVERRIDE {
- }
-
- virtual void ShowNotificationSettingsDialog(
- gfx::NativeView context) OVERRIDE {
- }
-
- virtual void OnNotificationClicked(const std::string& id) OVERRIDE {
- }
-
virtual void OnQuietModeChanged(bool quiet_mode) OVERRIDE {
}
- virtual void OnButtonClicked(const std::string& id,
- int button_index) OVERRIDE {
- }
-
- virtual NotificationList* GetNotificationList() OVERRIDE {
- return NULL;
- }
-
size_t send_remove_count_;
DISALLOW_COPY_AND_ASSIGN(MockNotificationListDelegate);
};
« no previous file with comments | « ui/message_center/notification_list.cc ('k') | ui/message_center/views/message_bubble_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698