Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef CONTENT_BROWSER_SITE_PER_PROCESS_BROWSERTEST_H_ | 5 #ifndef CONTENT_BROWSER_SITE_PER_PROCESS_BROWSERTEST_H_ |
| 6 #define CONTENT_BROWSER_SITE_PER_PROCESS_BROWSERTEST_H_ | 6 #define CONTENT_BROWSER_SITE_PER_PROCESS_BROWSERTEST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "content/public/test/content_browser_test.h" | 10 #include "content/public/test/content_browser_test.h" |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 23 protected: | 23 protected: |
| 24 std::string DepictFrameTree(FrameTreeNode* node); | 24 std::string DepictFrameTree(FrameTreeNode* node); |
| 25 | 25 |
| 26 void SetUpCommandLine(base::CommandLine* command_line) override; | 26 void SetUpCommandLine(base::CommandLine* command_line) override; |
| 27 void SetUpOnMainThread() override; | 27 void SetUpOnMainThread() override; |
| 28 | 28 |
| 29 private: | 29 private: |
| 30 FrameTreeVisualizer visualizer_; | 30 FrameTreeVisualizer visualizer_; |
| 31 }; | 31 }; |
| 32 | 32 |
| 33 class SitePerProcessHighDPIBrowserTest : public SitePerProcessBrowserTest { | |
| 34 public: | |
| 35 SitePerProcessHighDPIBrowserTest(); | |
| 36 | |
| 37 protected: | |
| 38 void SetUpCommandLine(base::CommandLine* command_line) override; | |
| 39 }; | |
|
sadrul
2015/11/03 18:00:00
This doesn't need to be in the header, right?
lfg
2015/11/03 20:49:16
Done.
| |
| 40 | |
| 33 } // namespace content | 41 } // namespace content |
| 34 | 42 |
| 35 #endif // CONTENT_BROWSER_SITE_PER_PROCESS_BROWSERTEST_H_ | 43 #endif // CONTENT_BROWSER_SITE_PER_PROCESS_BROWSERTEST_H_ |
| OLD | NEW |