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

Unified Diff: chrome/browser/chromeos/first_run/drive_first_run_controller.cc

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h 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
Index: chrome/browser/chromeos/first_run/drive_first_run_controller.cc
diff --git a/chrome/browser/chromeos/first_run/drive_first_run_controller.cc b/chrome/browser/chromeos/first_run/drive_first_run_controller.cc
index 57f5dafdec1eec32ce19056ce549c9c75868f932..5154e0884f471cfb49a9f2007eda5d052cc3c8c8 100644
--- a/chrome/browser/chromeos/first_run/drive_first_run_controller.cc
+++ b/chrome/browser/chromeos/first_run/drive_first_run_controller.cc
@@ -85,11 +85,11 @@ class DriveOfflineNotificationDelegate
: profile_(profile) {}
// message_center::NotificationDelegate overrides:
- virtual void Display() OVERRIDE {}
- virtual void Error() OVERRIDE {}
- virtual void Close(bool by_user) OVERRIDE {}
- virtual void Click() OVERRIDE {}
- virtual void ButtonClick(int button_index) OVERRIDE;
+ virtual void Display() override {}
+ virtual void Error() override {}
+ virtual void Close(bool by_user) override {}
+ virtual void Click() override {}
+ virtual void ButtonClick(int button_index) override;
protected:
virtual ~DriveOfflineNotificationDelegate() {}
@@ -156,12 +156,12 @@ class DriveWebContentsManager : public content::WebContentsObserver,
content::RenderFrameHost* render_frame_host,
const GURL& validated_url,
int error_code,
- const base::string16& error_description) OVERRIDE;
+ const base::string16& error_description) override;
virtual void DidFailLoad(content::RenderFrameHost* render_frame_host,
const GURL& validated_url,
int error_code,
- const base::string16& error_description) OVERRIDE;
+ const base::string16& error_description) override;
// content::WebContentsDelegate overrides:
virtual bool ShouldCreateWebContents(
@@ -171,12 +171,12 @@ class DriveWebContentsManager : public content::WebContentsObserver,
const base::string16& frame_name,
const GURL& target_url,
const std::string& partition_id,
- content::SessionStorageNamespace* session_storage_namespace) OVERRIDE;
+ content::SessionStorageNamespace* session_storage_namespace) override;
// content::NotificationObserver overrides:
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
Profile* profile_;
const std::string app_id_;
« no previous file with comments | « chrome/browser/chromeos/first_run/drive_first_run_browsertest.cc ('k') | chrome/browser/chromeos/first_run/first_run.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698