| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #include "chrome/browser/ui/views/message_center/web_notification_tray.h" | 5 #include "chrome/browser/ui/views/message_center/web_notification_tray.h" |
| 6 | 6 |
| 7 #include <set> | 7 #include <set> |
| 8 | 8 |
| 9 #include "ash/root_window_controller.h" | 9 #include "ash/root_window_controller.h" |
| 10 #include "ash/system/status_area_widget.h" | 10 #include "ash/system/status_area_widget.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 | 41 |
| 42 void TearDownOnMainThread() override { | 42 void TearDownOnMainThread() override { |
| 43 message_center::MessageCenter::Get()->RemoveAllNotifications(false); | 43 message_center::MessageCenter::Get()->RemoveAllNotifications(false); |
| 44 } | 44 } |
| 45 | 45 |
| 46 protected: | 46 protected: |
| 47 class TestNotificationDelegate : public ::NotificationDelegate { | 47 class TestNotificationDelegate : public ::NotificationDelegate { |
| 48 public: | 48 public: |
| 49 explicit TestNotificationDelegate(std::string id) : id_(id) {} | 49 explicit TestNotificationDelegate(std::string id) : id_(id) {} |
| 50 void Display() override {} | 50 void Display() override {} |
| 51 void Error() override {} | |
| 52 void Close(bool by_user) override {} | 51 void Close(bool by_user) override {} |
| 53 void Click() override {} | 52 void Click() override {} |
| 54 std::string id() const override { return id_; } | 53 std::string id() const override { return id_; } |
| 55 | 54 |
| 56 private: | 55 private: |
| 57 ~TestNotificationDelegate() override {} | 56 ~TestNotificationDelegate() override {} |
| 58 | 57 |
| 59 std::string id_; | 58 std::string id_; |
| 60 }; | 59 }; |
| 61 | 60 |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 base::RunLoop().RunUntilIdle(); | 252 base::RunLoop().RunUntilIdle(); |
| 254 EXPECT_TRUE(tray->status_icon_ == NULL); | 253 EXPECT_TRUE(tray->status_icon_ == NULL); |
| 255 AddNotification("test_id", "replace_id"); | 254 AddNotification("test_id", "replace_id"); |
| 256 base::RunLoop().RunUntilIdle(); | 255 base::RunLoop().RunUntilIdle(); |
| 257 EXPECT_TRUE(tray->status_icon_ != NULL); | 256 EXPECT_TRUE(tray->status_icon_ != NULL); |
| 258 RemoveNotification("test_id"); | 257 RemoveNotification("test_id"); |
| 259 base::RunLoop().RunUntilIdle(); | 258 base::RunLoop().RunUntilIdle(); |
| 260 EXPECT_TRUE(tray->status_icon_ == NULL); | 259 EXPECT_TRUE(tray->status_icon_ == NULL); |
| 261 } | 260 } |
| 262 } // namespace message_center | 261 } // namespace message_center |
| OLD | NEW |