Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / ui / message_center / cocoa / notification_controller_unittest.mm
index 4a77441..41573e1 100644 (file)
@@ -29,15 +29,14 @@ class MockMessageCenter : public message_center::FakeMessageCenter {
         remove_count_(0),
         last_clicked_index_(-1) {}
 
-  virtual void RemoveNotification(const std::string& id,
-                                  bool by_user) OVERRIDE {
+  void RemoveNotification(const std::string& id, bool by_user) override {
     last_removed_id_ = id;
     last_removed_by_user_ = by_user;
     ++remove_count_;
   }
 
-  virtual void ClickOnNotificationButton(const std::string& id,
-                                         int button_index) OVERRIDE {
+  void ClickOnNotificationButton(const std::string& id,
+                                 int button_index) override {
     last_clicked_id_ = id;
     last_clicked_index_ = button_index;
   }