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

Unified Diff: components/dom_distiller/core/dom_distiller_service.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_service.h
diff --git a/components/dom_distiller/core/dom_distiller_service.h b/components/dom_distiller/core/dom_distiller_service.h
index bbf64e6e1573f3a9e3f77e051566848a0cef5c3c..182cfb3746d2c9836bfde1fc5d99383311c576ef 100644
--- a/components/dom_distiller/core/dom_distiller_service.h
+++ b/components/dom_distiller/core/dom_distiller_service.h
@@ -121,31 +121,31 @@ class DomDistillerService : public DomDistillerServiceInterface {
virtual ~DomDistillerService();
// DomDistillerServiceInterface implementation.
- virtual syncer::SyncableService* GetSyncableService() const OVERRIDE;
+ virtual syncer::SyncableService* GetSyncableService() const override;
virtual const std::string AddToList(
const GURL& url,
scoped_ptr<DistillerPage> distiller_page,
- const ArticleAvailableCallback& article_cb) OVERRIDE;
- virtual bool HasEntry(const std::string& entry_id) OVERRIDE;
- virtual std::string GetUrlForEntry(const std::string& entry_id) OVERRIDE;
- virtual std::vector<ArticleEntry> GetEntries() const OVERRIDE;
+ const ArticleAvailableCallback& article_cb) override;
+ virtual bool HasEntry(const std::string& entry_id) override;
+ virtual std::string GetUrlForEntry(const std::string& entry_id) override;
+ virtual std::vector<ArticleEntry> GetEntries() const override;
virtual scoped_ptr<ArticleEntry> RemoveEntry(
- const std::string& entry_id) OVERRIDE;
+ const std::string& entry_id) override;
virtual scoped_ptr<ViewerHandle> ViewEntry(
ViewRequestDelegate* delegate,
scoped_ptr<DistillerPage> distiller_page,
- const std::string& entry_id) OVERRIDE;
+ const std::string& entry_id) override;
virtual scoped_ptr<ViewerHandle> ViewUrl(
ViewRequestDelegate* delegate,
scoped_ptr<DistillerPage> distiller_page,
- const GURL& url) OVERRIDE;
+ const GURL& url) override;
virtual scoped_ptr<DistillerPage> CreateDefaultDistillerPage(
- const gfx::Size& render_view_size) OVERRIDE;
+ const gfx::Size& render_view_size) override;
virtual scoped_ptr<DistillerPage> CreateDefaultDistillerPageWithHandle(
- scoped_ptr<SourcePageHandle> handle) OVERRIDE;
- virtual void AddObserver(DomDistillerObserver* observer) OVERRIDE;
- virtual void RemoveObserver(DomDistillerObserver* observer) OVERRIDE;
- virtual DistilledPagePrefs* GetDistilledPagePrefs() OVERRIDE;
+ scoped_ptr<SourcePageHandle> handle) override;
+ virtual void AddObserver(DomDistillerObserver* observer) override;
+ virtual void RemoveObserver(DomDistillerObserver* observer) override;
+ virtual DistilledPagePrefs* GetDistilledPagePrefs() override;
private:
void CancelTask(TaskTracker* task);
« no previous file with comments | « components/dom_distiller/core/distiller_url_fetcher_unittest.cc ('k') | components/dom_distiller/core/dom_distiller_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698