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

Unified Diff: components/dom_distiller/core/dom_distiller_store.h

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/dom_distiller/core/dom_distiller_store.h
diff --git a/components/dom_distiller/core/dom_distiller_store.h b/components/dom_distiller/core/dom_distiller_store.h
index 7e24f3881afa70e252ff21f095fe3547ca4654cc..563927b8bd82d360ede457c2fffc8d0b20afddd6 100644
--- a/components/dom_distiller/core/dom_distiller_store.h
+++ b/components/dom_distiller/core/dom_distiller_store.h
@@ -95,28 +95,28 @@ class DomDistillerStore : public syncer::SyncableService,
virtual ~DomDistillerStore();
// DomDistillerStoreInterface implementation.
- virtual syncer::SyncableService* GetSyncableService() OVERRIDE;
- virtual bool AddEntry(const ArticleEntry& entry) OVERRIDE;
- virtual bool UpdateEntry(const ArticleEntry& entry) OVERRIDE;
- virtual bool RemoveEntry(const ArticleEntry& entry) OVERRIDE;
+ virtual syncer::SyncableService* GetSyncableService() override;
+ virtual bool AddEntry(const ArticleEntry& entry) override;
+ virtual bool UpdateEntry(const ArticleEntry& entry) override;
+ virtual bool RemoveEntry(const ArticleEntry& entry) override;
virtual bool GetEntryById(const std::string& entry_id,
- ArticleEntry* entry) OVERRIDE;
- virtual bool GetEntryByUrl(const GURL& url, ArticleEntry* entry) OVERRIDE;
- virtual std::vector<ArticleEntry> GetEntries() const OVERRIDE;
- virtual void AddObserver(DomDistillerObserver* observer) OVERRIDE;
- virtual void RemoveObserver(DomDistillerObserver* observer) OVERRIDE;
+ ArticleEntry* entry) override;
+ virtual bool GetEntryByUrl(const GURL& url, ArticleEntry* entry) override;
+ virtual std::vector<ArticleEntry> GetEntries() const override;
+ virtual void AddObserver(DomDistillerObserver* observer) override;
+ virtual void RemoveObserver(DomDistillerObserver* observer) override;
// syncer::SyncableService implementation.
virtual syncer::SyncMergeResult MergeDataAndStartSyncing(
syncer::ModelType type, const syncer::SyncDataList& initial_sync_data,
scoped_ptr<syncer::SyncChangeProcessor> sync_processor,
- scoped_ptr<syncer::SyncErrorFactory> error_handler) OVERRIDE;
- virtual void StopSyncing(syncer::ModelType type) OVERRIDE;
+ scoped_ptr<syncer::SyncErrorFactory> error_handler) override;
+ virtual void StopSyncing(syncer::ModelType type) override;
virtual syncer::SyncDataList GetAllSyncData(
- syncer::ModelType type) const OVERRIDE;
+ syncer::ModelType type) const override;
virtual syncer::SyncError ProcessSyncChanges(
const tracked_objects::Location& from_here,
- const syncer::SyncChangeList& change_list) OVERRIDE;
+ const syncer::SyncChangeList& change_list) override;
private:
void OnDatabaseInit(bool success);
« no previous file with comments | « components/dom_distiller/core/dom_distiller_service.h ('k') | components/dom_distiller/core/dom_distiller_store_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698