diff options
Diffstat (limited to 'chrome/browser/dom_distiller/dom_distiller_viewer_source_browsertest.cc')
-rw-r--r-- | chrome/browser/dom_distiller/dom_distiller_viewer_source_browsertest.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/dom_distiller/dom_distiller_viewer_source_browsertest.cc b/chrome/browser/dom_distiller/dom_distiller_viewer_source_browsertest.cc index fa4623e..c3f2261 100644 --- a/chrome/browser/dom_distiller/dom_distiller_viewer_source_browsertest.cc +++ b/chrome/browser/dom_distiller/dom_distiller_viewer_source_browsertest.cc @@ -82,13 +82,13 @@ class DomDistillerViewerSourceBrowserTest : public InProcessBrowserTest { DomDistillerViewerSourceBrowserTest() {} virtual ~DomDistillerViewerSourceBrowserTest() {} - virtual void SetUpOnMainThread() override { + void SetUpOnMainThread() override { database_model_ = new FakeDB<ArticleEntry>::EntryMap; } - virtual void TearDownOnMainThread() override { delete database_model_; } + void TearDownOnMainThread() override { delete database_model_; } - virtual void SetUpCommandLine(CommandLine* command_line) override { + void SetUpCommandLine(CommandLine* command_line) override { command_line->AppendSwitch(switches::kEnableDomDistiller); } |