OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #include "content/public/test/content_browser_test.h" | |
6 #include "url/gurl.h" | |
7 | |
8 namespace content { | |
9 | |
10 class Shell; | |
11 | |
12 class BrowserSideNavigationBrowserTest : public ContentBrowserTest { | |
nasko
2014/11/19 18:05:56
Browser tests don't need separate headers, we just
clamy
2014/11/24 16:49:58
Done (SitePerProcessBrowserTest has a header file
| |
13 public: | |
14 BrowserSideNavigationBrowserTest(); | |
15 | |
16 protected: | |
17 void SetUpCommandLine(base::CommandLine* command_line) override; | |
18 void SetUpOnMainThread() override; | |
19 }; | |
20 | |
21 } // namespace content | |
OLD | NEW |