diff options
author | creis@chromium.org <creis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-21 20:55:26 +0000 |
---|---|---|
committer | creis@chromium.org <creis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-21 20:55:26 +0000 |
commit | 61ac9e2412b2915150f89d5b5bfafcf2e143af52 (patch) | |
tree | ab03be3f514aaaa93db3f6a10975d1598854808a /content/test/test_web_contents.h | |
parent | 29cf75e8d19433c5a5d77f224fb5b73f7e1736d7 (diff) | |
download | chromium_src-61ac9e2412b2915150f89d5b5bfafcf2e143af52.zip chromium_src-61ac9e2412b2915150f89d5b5bfafcf2e143af52.tar.gz chromium_src-61ac9e2412b2915150f89d5b5bfafcf2e143af52.tar.bz2 |
Remove is_main_frame and some of the navigation hacks for --site-per-process.
These are no longer necessary now that we have RenderFrameHosts for all frames.
BUG=314791
TEST=Visit a cross-site iframe with --site-per-process.
R=nasko@chromium.org
Review URL: https://codereview.chromium.org/206953002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@258671 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/test/test_web_contents.h')
-rw-r--r-- | content/test/test_web_contents.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/content/test/test_web_contents.h b/content/test/test_web_contents.h index 18b70138..a0d6825 100644 --- a/content/test/test_web_contents.h +++ b/content/test/test_web_contents.h @@ -94,9 +94,8 @@ class TestWebContents : public WebContentsImpl, public WebContentsTester { int history_length, int32 min_page_id) OVERRIDE; - void TestDidFinishLoad(const GURL& url, bool is_main_frame); + void TestDidFinishLoad(const GURL& url); void TestDidFailLoadWithError(const GURL& url, - bool is_main_frame, int error_code, const base::string16& error_description); |