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

Side by Side Diff: components/dom_distiller/core/fake_distiller.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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 COMPONENTS_DOM_DISTILLER_CORE_FAKE_DISTILLER_H_ 5 #ifndef COMPONENTS_DOM_DISTILLER_CORE_FAKE_DISTILLER_H_
6 #define COMPONENTS_DOM_DISTILLER_CORE_FAKE_DISTILLER_H_ 6 #define COMPONENTS_DOM_DISTILLER_CORE_FAKE_DISTILLER_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "components/dom_distiller/core/article_distillation_update.h" 9 #include "components/dom_distiller/core/article_distillation_update.h"
10 #include "components/dom_distiller/core/article_entry.h" 10 #include "components/dom_distiller/core/article_entry.h"
11 #include "components/dom_distiller/core/distiller.h" 11 #include "components/dom_distiller/core/distiller.h"
12 #include "testing/gmock/include/gmock/gmock.h" 12 #include "testing/gmock/include/gmock/gmock.h"
13 #include "url/gurl.h" 13 #include "url/gurl.h"
14 14
15 class GURL; 15 class GURL;
16 16
17 namespace dom_distiller { 17 namespace dom_distiller {
18 namespace test { 18 namespace test {
19 19
20 class MockDistillerFactory : public DistillerFactory { 20 class MockDistillerFactory : public DistillerFactory {
21 public: 21 public:
22 MockDistillerFactory(); 22 MockDistillerFactory();
23 virtual ~MockDistillerFactory(); 23 virtual ~MockDistillerFactory();
24 MOCK_METHOD0(CreateDistillerImpl, Distiller*()); 24 MOCK_METHOD0(CreateDistillerImpl, Distiller*());
25 virtual scoped_ptr<Distiller> CreateDistiller() OVERRIDE { 25 virtual scoped_ptr<Distiller> CreateDistiller() override {
26 return scoped_ptr<Distiller>(CreateDistillerImpl()); 26 return scoped_ptr<Distiller>(CreateDistillerImpl());
27 } 27 }
28 }; 28 };
29 29
30 class FakeDistiller : public Distiller { 30 class FakeDistiller : public Distiller {
31 public: 31 public:
32 // If execute_callback is true, when DistillPage is called, a task will 32 // If execute_callback is true, when DistillPage is called, a task will
33 // immediately be posted to execute the callback with a simple 33 // immediately be posted to execute the callback with a simple
34 // DistilledArticleProto. 34 // DistilledArticleProto.
35 explicit FakeDistiller(bool execute_callback); 35 explicit FakeDistiller(bool execute_callback);
36 // TODO(yfriedman): Drop execute_callback from this and give the option of 36 // TODO(yfriedman): Drop execute_callback from this and give the option of
37 // "auto-distilling" or calling the provided closure. 37 // "auto-distilling" or calling the provided closure.
38 explicit FakeDistiller(bool execute_callback, 38 explicit FakeDistiller(bool execute_callback,
39 const base::Closure& distillation_initiated_callback); 39 const base::Closure& distillation_initiated_callback);
40 virtual ~FakeDistiller(); 40 virtual ~FakeDistiller();
41 MOCK_METHOD0(Die, void()); 41 MOCK_METHOD0(Die, void());
42 42
43 virtual void DistillPage( 43 virtual void DistillPage(
44 const GURL& url, 44 const GURL& url,
45 scoped_ptr<DistillerPage> distiller_page, 45 scoped_ptr<DistillerPage> distiller_page,
46 const DistillationFinishedCallback& article_callback, 46 const DistillationFinishedCallback& article_callback,
47 const DistillationUpdateCallback& page_callback) OVERRIDE; 47 const DistillationUpdateCallback& page_callback) override;
48 48
49 void RunDistillerCallback(scoped_ptr<DistilledArticleProto> proto); 49 void RunDistillerCallback(scoped_ptr<DistilledArticleProto> proto);
50 void RunDistillerUpdateCallback(const ArticleDistillationUpdate& update); 50 void RunDistillerUpdateCallback(const ArticleDistillationUpdate& update);
51 51
52 GURL GetUrl() { return url_; } 52 GURL GetUrl() { return url_; }
53 53
54 DistillationFinishedCallback GetArticleCallback() { 54 DistillationFinishedCallback GetArticleCallback() {
55 return article_callback_; 55 return article_callback_;
56 } 56 }
57 57
58 private: 58 private:
59 void PostDistillerCallback(scoped_ptr<DistilledArticleProto> proto); 59 void PostDistillerCallback(scoped_ptr<DistilledArticleProto> proto);
60 void RunDistillerCallbackInternal(scoped_ptr<DistilledArticleProto> proto); 60 void RunDistillerCallbackInternal(scoped_ptr<DistilledArticleProto> proto);
61 61
62 bool execute_callback_; 62 bool execute_callback_;
63 GURL url_; 63 GURL url_;
64 DistillationFinishedCallback article_callback_; 64 DistillationFinishedCallback article_callback_;
65 DistillationUpdateCallback page_callback_; 65 DistillationUpdateCallback page_callback_;
66 bool destruction_allowed_; 66 bool destruction_allowed_;
67 // Used to notify when distillation is complete. 67 // Used to notify when distillation is complete.
68 base::Closure distillation_initiated_callback_; 68 base::Closure distillation_initiated_callback_;
69 }; 69 };
70 70
71 } // namespace test 71 } // namespace test
72 } // namespace dom_distiller 72 } // namespace dom_distiller
73 73
74 #endif // COMPONENTS_DOM_DISTILLER_CORE_FAKE_DISTILLER_H_ 74 #endif // COMPONENTS_DOM_DISTILLER_CORE_FAKE_DISTILLER_H_
OLDNEW
« no previous file with comments | « components/dom_distiller/core/dom_distiller_test_util.h ('k') | components/dom_distiller/core/fake_distiller_page.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698