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

Side by Side Diff: chrome/browser/dom_distiller/lazy_dom_distiller_service.h

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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_DOM_DISTILLER_LAZY_DOM_DISTILLER_SERVICE_H_ 5 #ifndef CHROME_BROWSER_DOM_DISTILLER_LAZY_DOM_DISTILLER_SERVICE_H_
6 #define CHROME_BROWSER_DOM_DISTILLER_LAZY_DOM_DISTILLER_SERVICE_H_ 6 #define CHROME_BROWSER_DOM_DISTILLER_LAZY_DOM_DISTILLER_SERVICE_H_
7 7
8 #include "components/dom_distiller/core/dom_distiller_service.h" 8 #include "components/dom_distiller/core/dom_distiller_service.h"
9 #include "components/dom_distiller/core/task_tracker.h" 9 #include "components/dom_distiller/core/task_tracker.h"
10 #include "content/public/browser/notification_observer.h" 10 #include "content/public/browser/notification_observer.h"
(...skipping 15 matching lines...) Expand all
26 // when the profile is destroyed. 26 // when the profile is destroyed.
27 class LazyDomDistillerService : public DomDistillerServiceInterface, 27 class LazyDomDistillerService : public DomDistillerServiceInterface,
28 public content::NotificationObserver { 28 public content::NotificationObserver {
29 public: 29 public:
30 LazyDomDistillerService(Profile* profile, 30 LazyDomDistillerService(Profile* profile,
31 const DomDistillerServiceFactory* service_factory); 31 const DomDistillerServiceFactory* service_factory);
32 virtual ~LazyDomDistillerService(); 32 virtual ~LazyDomDistillerService();
33 33
34 public: 34 public:
35 // DomDistillerServiceInterface implementation: 35 // DomDistillerServiceInterface implementation:
36 virtual syncer::SyncableService* GetSyncableService() const OVERRIDE; 36 virtual syncer::SyncableService* GetSyncableService() const override;
37 virtual const std::string AddToList( 37 virtual const std::string AddToList(
38 const GURL& url, 38 const GURL& url,
39 scoped_ptr<DistillerPage> distiller_page, 39 scoped_ptr<DistillerPage> distiller_page,
40 const ArticleAvailableCallback& article_cb) OVERRIDE; 40 const ArticleAvailableCallback& article_cb) override;
41 virtual bool HasEntry(const std::string& entry_id) OVERRIDE; 41 virtual bool HasEntry(const std::string& entry_id) override;
42 virtual std::string GetUrlForEntry(const std::string& entry_id) OVERRIDE; 42 virtual std::string GetUrlForEntry(const std::string& entry_id) override;
43 virtual std::vector<ArticleEntry> GetEntries() const OVERRIDE; 43 virtual std::vector<ArticleEntry> GetEntries() const override;
44 virtual scoped_ptr<ArticleEntry> RemoveEntry( 44 virtual scoped_ptr<ArticleEntry> RemoveEntry(
45 const std::string& entry_id) OVERRIDE; 45 const std::string& entry_id) override;
46 virtual scoped_ptr<ViewerHandle> ViewEntry( 46 virtual scoped_ptr<ViewerHandle> ViewEntry(
47 ViewRequestDelegate* delegate, 47 ViewRequestDelegate* delegate,
48 scoped_ptr<DistillerPage> distiller_page, 48 scoped_ptr<DistillerPage> distiller_page,
49 const std::string& entry_id) OVERRIDE; 49 const std::string& entry_id) override;
50 virtual scoped_ptr<ViewerHandle> ViewUrl( 50 virtual scoped_ptr<ViewerHandle> ViewUrl(
51 ViewRequestDelegate* delegate, 51 ViewRequestDelegate* delegate,
52 scoped_ptr<DistillerPage> distiller_page, 52 scoped_ptr<DistillerPage> distiller_page,
53 const GURL& url) OVERRIDE; 53 const GURL& url) override;
54 virtual scoped_ptr<DistillerPage> CreateDefaultDistillerPage( 54 virtual scoped_ptr<DistillerPage> CreateDefaultDistillerPage(
55 const gfx::Size& render_view_size) OVERRIDE; 55 const gfx::Size& render_view_size) override;
56 virtual scoped_ptr<DistillerPage> CreateDefaultDistillerPageWithHandle( 56 virtual scoped_ptr<DistillerPage> CreateDefaultDistillerPageWithHandle(
57 scoped_ptr<SourcePageHandle> handle) OVERRIDE; 57 scoped_ptr<SourcePageHandle> handle) override;
58 virtual void AddObserver(DomDistillerObserver* observer) OVERRIDE; 58 virtual void AddObserver(DomDistillerObserver* observer) override;
59 virtual void RemoveObserver(DomDistillerObserver* observer) OVERRIDE; 59 virtual void RemoveObserver(DomDistillerObserver* observer) override;
60 virtual DistilledPagePrefs* GetDistilledPagePrefs() OVERRIDE; 60 virtual DistilledPagePrefs* GetDistilledPagePrefs() override;
61 61
62 private: 62 private:
63 // Accessor method for the backing service instance. 63 // Accessor method for the backing service instance.
64 DomDistillerServiceInterface* instance() const; 64 DomDistillerServiceInterface* instance() const;
65 65
66 // content::NotificationObserver implementation: 66 // content::NotificationObserver implementation:
67 virtual void Observe(int type, 67 virtual void Observe(int type,
68 const content::NotificationSource& source, 68 const content::NotificationSource& source,
69 const content::NotificationDetails& details) OVERRIDE; 69 const content::NotificationDetails& details) override;
70 70
71 // The Profile to use when retrieving the DomDistillerService and also the 71 // The Profile to use when retrieving the DomDistillerService and also the
72 // profile to listen for destruction of. 72 // profile to listen for destruction of.
73 Profile* profile_; 73 Profile* profile_;
74 74
75 // A BrowserContextKeyedServiceFactory for the DomDistillerService. 75 // A BrowserContextKeyedServiceFactory for the DomDistillerService.
76 const DomDistillerServiceFactory* service_factory_; 76 const DomDistillerServiceFactory* service_factory_;
77 77
78 // Used to track when the profile is shut down. 78 // Used to track when the profile is shut down.
79 content::NotificationRegistrar registrar_; 79 content::NotificationRegistrar registrar_;
80 80
81 DISALLOW_COPY_AND_ASSIGN(LazyDomDistillerService); 81 DISALLOW_COPY_AND_ASSIGN(LazyDomDistillerService);
82 }; 82 };
83 83
84 } // namespace dom_distiller 84 } // namespace dom_distiller
85 85
86 #endif // CHROME_BROWSER_DOM_DISTILLER_LAZY_DOM_DISTILLER_SERVICE_H_ 86 #endif // CHROME_BROWSER_DOM_DISTILLER_LAZY_DOM_DISTILLER_SERVICE_H_
OLDNEW
« no previous file with comments | « chrome/browser/dom_distiller/dom_distiller_viewer_source_browsertest.cc ('k') | chrome/browser/dom_distiller/tab_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698