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

Unified Diff: chrome/browser/captive_portal/captive_portal_browsertest.cc

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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/captive_portal/captive_portal_browsertest.cc
diff --git a/chrome/browser/captive_portal/captive_portal_browsertest.cc b/chrome/browser/captive_portal/captive_portal_browsertest.cc
index 24c98faddf8b139afe776e14ec7b60a3572cf130..ed55c083a75feb74599124cc42f3530350380fd1 100644
--- a/chrome/browser/captive_portal/captive_portal_browsertest.cc
+++ b/chrome/browser/captive_portal/captive_portal_browsertest.cc
@@ -116,7 +116,7 @@ class URLRequestTimeoutOnDemandJob : public net::URLRequestJob,
public base::NonThreadSafe {
public:
// net::URLRequestJob:
- virtual void Start() OVERRIDE;
+ virtual void Start() override;
// All the public static methods below can be called on any thread.
@@ -522,7 +522,7 @@ class MultiNavigationObserver : public content::NotificationObserver {
// content::NotificationObserver:
virtual void Observe(int type, const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
int num_navigations_;
@@ -612,7 +612,7 @@ class FailLoadsAfterLoginObserver : public content::NotificationObserver {
// content::NotificationObserver:
virtual void Observe(int type, const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
// The set of tabs that need to be navigated. This is the set of loading
// tabs when the observer is created.
@@ -702,7 +702,7 @@ class CaptivePortalObserver : public content::NotificationObserver {
// Records results and exits the message loop, if needed.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
// Number of times OnPortalResult has been called since construction.
int num_results_received_;
@@ -799,8 +799,8 @@ class CaptivePortalBrowserTest : public InProcessBrowserTest {
CaptivePortalBrowserTest();
// InProcessBrowserTest:
- virtual void SetUpOnMainThread() OVERRIDE;
- virtual void TearDownOnMainThread() OVERRIDE;
+ virtual void SetUpOnMainThread() override;
+ virtual void TearDownOnMainThread() override;
// Sets the captive portal checking preference. Does not affect the command
// line flag, which is set in SetUpCommandLine.

Powered by Google App Engine
This is Rietveld 408576698