Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / content / public / test / test_browser_thread.cc
index b4fc132..ac67480 100644 (file)
@@ -23,16 +23,14 @@ class TestBrowserThreadImpl : public BrowserThreadImpl {
       : BrowserThreadImpl(identifier, message_loop),
         notification_service_(NULL) {}
 
-  virtual ~TestBrowserThreadImpl() {
-    Stop();
-  }
+  ~TestBrowserThreadImpl() override { Stop(); }
 
-  virtual void Init() OVERRIDE {
+  void Init() override {
     notification_service_ = new NotificationServiceImpl;
     BrowserThreadImpl::Init();
   }
 
-  virtual void CleanUp() OVERRIDE {
+  void CleanUp() override {
     delete notification_service_;
     notification_service_ = NULL;
     BrowserThreadImpl::CleanUp();