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

Unified Diff: ui/message_center/views/message_center_view_unittest.cc

Issue 657923005: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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/views/message_center_view.cc ('k') | ui/message_center/views/message_popup_collection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/message_center/views/message_center_view_unittest.cc
diff --git a/ui/message_center/views/message_center_view_unittest.cc b/ui/message_center/views/message_center_view_unittest.cc
index 6941927a9e93fd9f03e88615942ac3ccb9050b4d..8cdf1f7b469f4802507b3d9cc3f9dbbbd449c8cd 100644
--- a/ui/message_center/views/message_center_view_unittest.cc
+++ b/ui/message_center/views/message_center_view_unittest.cc
@@ -38,11 +38,11 @@ class MockNotificationView : public NotificationView {
explicit MockNotificationView(MessageCenterController* controller,
const Notification& notification,
Test* test);
- virtual ~MockNotificationView();
+ ~MockNotificationView() override;
- virtual gfx::Size GetPreferredSize() const override;
- virtual int GetHeightForWidth(int w) const override;
- virtual void Layout() override;
+ gfx::Size GetPreferredSize() const override;
+ int GetHeightForWidth(int w) const override;
+ void Layout() override;
private:
Test* test_;
@@ -85,28 +85,28 @@ class MessageCenterViewTest : public testing::Test,
public MessageCenterController {
public:
MessageCenterViewTest();
- virtual ~MessageCenterViewTest();
+ ~MessageCenterViewTest() override;
- virtual void SetUp() override;
- virtual void TearDown() override;
+ void SetUp() override;
+ void TearDown() override;
MessageCenterView* GetMessageCenterView();
int GetNotificationCount();
int GetCallCount(CallType type);
// Overridden from MessageCenterController:
- virtual void ClickOnNotification(const std::string& notification_id) override;
- virtual void RemoveNotification(const std::string& notification_id,
- bool by_user) override;
- virtual scoped_ptr<ui::MenuModel> CreateMenuModel(
+ void ClickOnNotification(const std::string& notification_id) override;
+ void RemoveNotification(const std::string& notification_id,
+ bool by_user) override;
+ scoped_ptr<ui::MenuModel> CreateMenuModel(
const NotifierId& notifier_id,
const base::string16& display_source) override;
- virtual bool HasClickedListener(const std::string& notification_id) override;
- virtual void ClickOnNotificationButton(const std::string& notification_id,
- int button_index) override;
+ bool HasClickedListener(const std::string& notification_id) override;
+ void ClickOnNotificationButton(const std::string& notification_id,
+ int button_index) override;
// Overridden from MockNotificationView::Test
- virtual void RegisterCall(CallType type) override;
+ void RegisterCall(CallType type) override;
void LogBounds(int depth, views::View* view);
« no previous file with comments | « ui/message_center/views/message_center_view.cc ('k') | ui/message_center/views/message_popup_collection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698