Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / content / public / test / test_notification_tracker.h
index f34fdae..786ec14 100644 (file)
@@ -33,7 +33,7 @@ class TestNotificationTracker : public NotificationObserver {
   // ListenFor for the notifications you are interested in.
   TestNotificationTracker();
 
-  virtual ~TestNotificationTracker();
+  ~TestNotificationTracker() override;
 
   // Makes this object listen for the given notification with the given source.
   void ListenFor(int type, const NotificationSource& source);
@@ -69,9 +69,10 @@ class TestNotificationTracker : public NotificationObserver {
   const Event& at(size_t i) const { return events_[i]; }
 
  protected:
-  virtual void Observe(int type,
-                       const NotificationSource& source,
-                       const NotificationDetails& details) OVERRIDE;
+  void Observe(int type,
+               const NotificationSource& source,
+               const NotificationDetails& details) override;
+
  private:
   NotificationRegistrar registrar_;