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

Side by Side Diff: content/browser/child_process_launcher_browsertest.cc

Issue 667943003: Standardize usage of virtual/override/final in content/browser/ (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
« no previous file with comments | « content/browser/cert_store_impl.h ('k') | content/browser/child_process_security_policy_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "base/command_line.h" 5 #include "base/command_line.h"
6 #include "content/public/common/content_switches.h" 6 #include "content/public/common/content_switches.h"
7 #include "content/public/test/content_browser_test.h" 7 #include "content/public/test/content_browser_test.h"
8 #include "content/public/test/content_browser_test_utils.h" 8 #include "content/public/test/content_browser_test_utils.h"
9 9
10 namespace content { 10 namespace content {
11 11
12 typedef ContentBrowserTest ChildProcessLauncherBrowserTest; 12 typedef ContentBrowserTest ChildProcessLauncherBrowserTest;
13 13
14 class StatsTableBrowserTest : public ChildProcessLauncherBrowserTest { 14 class StatsTableBrowserTest : public ChildProcessLauncherBrowserTest {
15 public: 15 public:
16 virtual void SetUpCommandLine(base::CommandLine* command_line) override { 16 void SetUpCommandLine(base::CommandLine* command_line) override {
17 command_line->AppendSwitch(switches::kEnableStatsTable); 17 command_line->AppendSwitch(switches::kEnableStatsTable);
18 } 18 }
19 }; 19 };
20 20
21 IN_PROC_BROWSER_TEST_F(StatsTableBrowserTest, StartWithStatTable) { 21 IN_PROC_BROWSER_TEST_F(StatsTableBrowserTest, StartWithStatTable) {
22 NavigateToURL(shell(), GURL("about:blank")); 22 NavigateToURL(shell(), GURL("about:blank"));
23 } 23 }
24 24
25 } // namespace content 25 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/cert_store_impl.h ('k') | content/browser/child_process_security_policy_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698