Index: content/browser/browser_side_navigation_browsertest.h |
diff --git a/content/browser/browser_side_navigation_browsertest.h b/content/browser/browser_side_navigation_browsertest.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..22e3389f1bd15407da9678bcf367ccc7a5199f49 |
--- /dev/null |
+++ b/content/browser/browser_side_navigation_browsertest.h |
@@ -0,0 +1,21 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "content/public/test/content_browser_test.h" |
+#include "url/gurl.h" |
+ |
+namespace content { |
+ |
+class Shell; |
+ |
+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
|
+ public: |
+ BrowserSideNavigationBrowserTest(); |
+ |
+ protected: |
+ void SetUpCommandLine(base::CommandLine* command_line) override; |
+ void SetUpOnMainThread() override; |
+}; |
+ |
+} // namespace content |