| Index: chrome/browser/dom_distiller/lazy_dom_distiller_service.h
|
| diff --git a/chrome/browser/dom_distiller/lazy_dom_distiller_service.h b/chrome/browser/dom_distiller/lazy_dom_distiller_service.h
|
| index 18bed9606fc570bc5f6040fb163c9a25a1cd4099..976689d33f0833f68ddee35dae8bcbb17030f5a2 100644
|
| --- a/chrome/browser/dom_distiller/lazy_dom_distiller_service.h
|
| +++ b/chrome/browser/dom_distiller/lazy_dom_distiller_service.h
|
| @@ -33,31 +33,31 @@ class LazyDomDistillerService : public DomDistillerServiceInterface,
|
|
|
| public:
|
| // 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:
|
| // Accessor method for the backing service instance.
|
| @@ -66,7 +66,7 @@ class LazyDomDistillerService : public DomDistillerServiceInterface,
|
| // content::NotificationObserver implementation:
|
| virtual void Observe(int type,
|
| const content::NotificationSource& source,
|
| - const content::NotificationDetails& details) OVERRIDE;
|
| + const content::NotificationDetails& details) override;
|
|
|
| // The Profile to use when retrieving the DomDistillerService and also the
|
| // profile to listen for destruction of.
|
|
|