Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / download / download_ui_controller.cc
index f584ef7..6f8b219 100644 (file)
@@ -33,7 +33,7 @@ class DefaultUIControllerDelegateAndroid
 
  private:
   // DownloadUIController::Delegate
-  virtual void OnNewDownloadReady(content::DownloadItem* item) OVERRIDE;
+  virtual void OnNewDownloadReady(content::DownloadItem* item) override;
 };
 
 void DefaultUIControllerDelegateAndroid::OnNewDownloadReady(
@@ -57,11 +57,11 @@ class DefaultUIControllerDelegate : public DownloadUIController::Delegate {
   // |profile| is required to outlive DefaultUIControllerDelegate.
   explicit DefaultUIControllerDelegate(Profile* profile)
       : profile_(profile) {}
-  virtual ~DefaultUIControllerDelegate() {}
+  ~DefaultUIControllerDelegate() override {}
 
  private:
   // DownloadUIController::Delegate
-  virtual void OnNewDownloadReady(content::DownloadItem* item) OVERRIDE;
+  void OnNewDownloadReady(content::DownloadItem* item) override;
 
   Profile* profile_;
 };