sandbox/linux/bpf_dsl: eliminate implicit dependency on C++ compiler behavior
[chromium-blink-merge.git] / content / browser / site_per_process_browsertest.h
blob16db097ed49ecb0bee58f427169f791f31003ef5
1 // Copyright (c) 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.
5 #ifndef CONTENT_BROWSER_SITE_PER_PROCESS_BROWSERTEST_H_
6 #define CONTENT_BROWSER_SITE_PER_PROCESS_BROWSERTEST_H_
8 #include <string>
10 #include "content/public/test/content_browser_test.h"
11 #include "content/test/content_browser_test_utils_internal.h"
12 #include "url/gurl.h"
14 namespace content {
16 class FrameTreeNode;
17 class Shell;
19 class SitePerProcessBrowserTest : public ContentBrowserTest {
20 public:
21 SitePerProcessBrowserTest();
23 protected:
24 std::string DepictFrameTree(FrameTreeNode* node);
26 void SetUpCommandLine(base::CommandLine* command_line) override;
27 void SetUpOnMainThread() override;
29 private:
30 FrameTreeVisualizer visualizer_;
33 } // namespace content
35 #endif // CONTENT_BROWSER_SITE_PER_PROCESS_BROWSERTEST_H_