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

Unified Diff: components/google/core/browser/google_url_tracker_unittest.cc

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: components/google/core/browser/google_url_tracker_unittest.cc
diff --git a/components/google/core/browser/google_url_tracker_unittest.cc b/components/google/core/browser/google_url_tracker_unittest.cc
index fe159089d62e572d96dd2ec149d609cd39c63b49..a95d392552a13b77efad5ded85ed239c73ffcc17 100644
--- a/components/google/core/browser/google_url_tracker_unittest.cc
+++ b/components/google/core/browser/google_url_tracker_unittest.cc
@@ -74,11 +74,11 @@ class TestGoogleURLTrackerClient : public GoogleURLTrackerClient {
explicit TestGoogleURLTrackerClient(PrefService* prefs_);
virtual ~TestGoogleURLTrackerClient();
- virtual void SetListeningForNavigationStart(bool listen) OVERRIDE;
- virtual bool IsListeningForNavigationStart() OVERRIDE;
- virtual bool IsBackgroundNetworkingEnabled() OVERRIDE;
- virtual PrefService* GetPrefs() OVERRIDE;
- virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE;
+ virtual void SetListeningForNavigationStart(bool listen) override;
+ virtual bool IsListeningForNavigationStart() override;
+ virtual bool IsBackgroundNetworkingEnabled() override;
+ virtual PrefService* GetPrefs() override;
+ virtual net::URLRequestContextGetter* GetRequestContext() override;
private:
PrefService* prefs_;
@@ -127,13 +127,13 @@ class TestGoogleURLTrackerNavigationHelper
explicit TestGoogleURLTrackerNavigationHelper(GoogleURLTracker* tracker);
virtual ~TestGoogleURLTrackerNavigationHelper();
- virtual void SetListeningForNavigationCommit(bool listen) OVERRIDE;
- virtual bool IsListeningForNavigationCommit() OVERRIDE;
- virtual void SetListeningForTabDestruction(bool listen) OVERRIDE;
- virtual bool IsListeningForTabDestruction() OVERRIDE;
+ virtual void SetListeningForNavigationCommit(bool listen) override;
+ virtual bool IsListeningForNavigationCommit() override;
+ virtual void SetListeningForTabDestruction(bool listen) override;
+ virtual bool IsListeningForTabDestruction() override;
virtual void OpenURL(GURL url,
WindowOpenDisposition disposition,
- bool user_clicked_on_link) OVERRIDE;
+ bool user_clicked_on_link) override;
private:
bool listening_for_nav_commit_;
@@ -182,7 +182,7 @@ class TestInfoBarManager : public infobars::InfoBarManager {
public:
explicit TestInfoBarManager(int unique_id);
virtual ~TestInfoBarManager();
- virtual int GetActiveEntryID() OVERRIDE;
+ virtual int GetActiveEntryID() override;
private:
int unique_id_;
@@ -210,8 +210,8 @@ class GoogleURLTrackerTest : public testing::Test {
virtual ~GoogleURLTrackerTest();
// testing::Test
- virtual void SetUp() OVERRIDE;
- virtual void TearDown() OVERRIDE;
+ virtual void SetUp() override;
+ virtual void TearDown() override;
net::TestURLFetcher* GetFetcher();
void MockSearchDomainCheckResponse(const std::string& domain);
« no previous file with comments | « components/google/core/browser/google_url_tracker_map_entry.h ('k') | components/history/core/browser/in_memory_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698