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

Unified Diff: chrome/browser/history/typed_url_syncable_service_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/typed_url_syncable_service_unittest.cc
diff --git a/chrome/browser/history/typed_url_syncable_service_unittest.cc b/chrome/browser/history/typed_url_syncable_service_unittest.cc
index 77069cd155fea4543673571c7123d4cb8553dec5..ac4f1add795edc08502d553c59d77e84c5cc4000 100644
--- a/chrome/browser/history/typed_url_syncable_service_unittest.cc
+++ b/chrome/browser/history/typed_url_syncable_service_unittest.cc
@@ -41,14 +41,14 @@ class TestHistoryBackend : public HistoryBackend {
TestHistoryBackend() : HistoryBackend(base::FilePath(), NULL, NULL) {}
// HistoryBackend test implementation.
- virtual bool IsExpiredVisitTime(const base::Time& time) OVERRIDE {
+ virtual bool IsExpiredVisitTime(const base::Time& time) override {
return time.ToInternalValue() == EXPIRED_VISIT;
}
virtual bool GetMostRecentVisitsForURL(
URLID id,
int max_visits,
- VisitVector* visits) OVERRIDE {
+ VisitVector* visits) override {
if (local_db_visits_[id].empty())
return false;
@@ -129,7 +129,7 @@ class TypedUrlSyncableServiceTest : public testing::Test {
virtual ~TypedUrlSyncableServiceTest() {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
fake_history_backend_ = new TestHistoryBackend();
typed_url_sync_service_.reset(
new TypedUrlSyncableService(fake_history_backend_.get()));
« no previous file with comments | « chrome/browser/history/typed_url_syncable_service.h ('k') | chrome/browser/history/url_index_private_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698