Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(545)

Side by Side Diff: content/browser/site_per_process_browsertest.h

Issue 1652483002: Browser Side Text Input State Tracking for OOPIF. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed a Compile Error Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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"
11 #include "content/test/content_browser_test_utils_internal.h" 11 #include "content/test/content_browser_test_utils_internal.h"
12 #include "url/gurl.h" 12 #include "url/gurl.h"
13 13
14 namespace content { 14 namespace content {
15 15
16 class FrameTreeNode; 16 class FrameTreeNode;
17 class Shell; 17 class Shell;
18 class WebContentsImpl;
18 19
19 class SitePerProcessBrowserTest : public ContentBrowserTest { 20 class SitePerProcessBrowserTest : public ContentBrowserTest {
20 public: 21 public:
21 SitePerProcessBrowserTest(); 22 SitePerProcessBrowserTest();
22 23
23 protected: 24 protected:
24 std::string DepictFrameTree(FrameTreeNode* node); 25 std::string DepictFrameTree(FrameTreeNode* node);
25 26
26 void SetUpCommandLine(base::CommandLine* command_line) override; 27 void SetUpCommandLine(base::CommandLine* command_line) override;
27 void SetUpOnMainThread() override; 28 void SetUpOnMainThread() override;
28 29
30 WebContentsImpl* GetWebContents();
Charlie Reis 2016/03/15 18:32:00 nit: web_contents() Thanks for adding this-- I li
EhsanK 2016/03/15 23:51:18 Thanks! Done.
31
29 private: 32 private:
30 FrameTreeVisualizer visualizer_; 33 FrameTreeVisualizer visualizer_;
31 }; 34 };
32 35
33 } // namespace content 36 } // namespace content
34 37
35 #endif // CONTENT_BROWSER_SITE_PER_PROCESS_BROWSERTEST_H_ 38 #endif // CONTENT_BROWSER_SITE_PER_PROCESS_BROWSERTEST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698