blob: fe3fa1da32bf3d13e13d1cabf783ce4bb74c1cc5 [file] [log] [blame]
morrita7fd88cd2014-10-02 22:48:581// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "base/command_line.h"
6#include "content/public/common/content_switches.h"
7#include "content/public/test/content_browser_test.h"
8#include "content/public/test/content_browser_test_utils.h"
9
10namespace content {
11
12typedef ContentBrowserTest ChildProcessLauncherBrowserTest;
13
14class StatsTableBrowserTest : public ChildProcessLauncherBrowserTest {
15 public:
dchengc2282aa2014-10-21 12:07:5816 void SetUpCommandLine(base::CommandLine* command_line) override {
morrita7fd88cd2014-10-02 22:48:5817 command_line->AppendSwitch(switches::kEnableStatsTable);
18 }
19};
20
21IN_PROC_BROWSER_TEST_F(StatsTableBrowserTest, StartWithStatTable) {
22 NavigateToURL(shell(), GURL("about:blank"));
23}
24
25} // namespace content