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

Unified Diff: chrome/browser/history/android/android_provider_backend_unittest.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/history/android/android_provider_backend_unittest.cc
diff --git a/chrome/browser/history/android/android_provider_backend_unittest.cc b/chrome/browser/history/android/android_provider_backend_unittest.cc
index efc8ecc7bd96944d05ec6270b85d41145bfc8fb2..7166ad40fd88dbfd80b8f27b5750a2a226ed60c9 100644
--- a/chrome/browser/history/android/android_provider_backend_unittest.cc
+++ b/chrome/browser/history/android/android_provider_backend_unittest.cc
@@ -69,15 +69,15 @@ class AndroidProviderBackendDelegate : public HistoryBackend::Delegate {
public:
AndroidProviderBackendDelegate() {}
- virtual void NotifyProfileError(sql::InitStatus init_status) OVERRIDE {}
+ virtual void NotifyProfileError(sql::InitStatus init_status) override {}
virtual void SetInMemoryBackend(
- scoped_ptr<InMemoryHistoryBackend> backend) OVERRIDE {}
- virtual void NotifyFaviconChanged(const std::set<GURL>& url) OVERRIDE {
+ scoped_ptr<InMemoryHistoryBackend> backend) override {}
+ virtual void NotifyFaviconChanged(const std::set<GURL>& url) override {
favicon_changed_.reset(new std::set<GURL>(url.begin(), url.end()));
}
virtual void BroadcastNotifications(
int type,
- scoped_ptr<HistoryDetails> details) OVERRIDE {
+ scoped_ptr<HistoryDetails> details) override {
switch (type) {
case chrome::NOTIFICATION_HISTORY_URLS_DELETED:
deleted_details_.reset(
@@ -89,9 +89,9 @@ class AndroidProviderBackendDelegate : public HistoryBackend::Delegate {
break;
}
}
- virtual void DBLoaded() OVERRIDE {}
+ virtual void DBLoaded() override {}
virtual void NotifyVisitDBObserversOnAddVisit(
- const history::BriefVisitInfo& info) OVERRIDE {}
+ const history::BriefVisitInfo& info) override {}
URLsDeletedDetails* deleted_details() const {
return deleted_details_.get();
@@ -130,7 +130,7 @@ class AndroidProviderBackendTest : public testing::Test {
virtual ~AndroidProviderBackendTest() {}
protected:
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
// Setup the testing profile, so the bookmark_model_sql_handler could
// get the bookmark model from it.
ASSERT_TRUE(profile_manager_.SetUp());

Powered by Google App Engine
This is Rietveld 408576698