| Index: components/dom_distiller/core/distilled_content_store.h
|
| diff --git a/components/dom_distiller/core/distilled_content_store.h b/components/dom_distiller/core/distilled_content_store.h
|
| index 4312b0153eb7bcc3f7480248eea1597f3071af95..0063dd37166eb4b993277aaafaa0861c12f05d13 100644
|
| --- a/components/dom_distiller/core/distilled_content_store.h
|
| +++ b/components/dom_distiller/core/distilled_content_store.h
|
| @@ -45,14 +45,13 @@ class DistilledContentStore {
|
| class InMemoryContentStore : public DistilledContentStore {
|
| public:
|
| explicit InMemoryContentStore(const int max_num_entries);
|
| - virtual ~InMemoryContentStore();
|
| + ~InMemoryContentStore() override;
|
|
|
| // DistilledContentStore implementation
|
| - virtual void SaveContent(const ArticleEntry& entry,
|
| - const DistilledArticleProto& proto,
|
| - SaveCallback callback) override;
|
| - virtual void LoadContent(const ArticleEntry& entry,
|
| - LoadCallback callback) override;
|
| + void SaveContent(const ArticleEntry& entry,
|
| + const DistilledArticleProto& proto,
|
| + SaveCallback callback) override;
|
| + void LoadContent(const ArticleEntry& entry, LoadCallback callback) override;
|
|
|
| // Synchronously saves the content.
|
| void InjectContent(const ArticleEntry& entry,
|
|
|