diff options
author | creis@chromium.org <creis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-14 07:27:28 +0000 |
---|---|---|
committer | creis@chromium.org <creis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-14 07:27:28 +0000 |
commit | e198683d045842e9da6cd5ce53b4f3c690ad2070 (patch) | |
tree | 8a134325ba972af789a39623dbd9e674f429ce47 /content/test | |
parent | 00464e4f3f8286cc1265db6b0dfc61cc40b94932 (diff) | |
download | chromium_src-e198683d045842e9da6cd5ce53b4f3c690ad2070.zip chromium_src-e198683d045842e9da6cd5ce53b4f3c690ad2070.tar.gz chromium_src-e198683d045842e9da6cd5ce53b4f3c690ad2070.tar.bz2 |
Eliminate SwapOut message parameters, keeping state in RVHM instead.
We no longer need to process SwapOut messages on the IO thread, and we no longer pass browser-internal request IDs to the renderer to be echoed back. This paves the way to support transferring navigations using
CrossSiteResourceHandler.
BUG=238331
TEST=No behavior change.
Review URL: https://chromiumcodereview.appspot.com/15682009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206354 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/test')
-rw-r--r-- | content/test/test_web_contents.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/test/test_web_contents.cc b/content/test/test_web_contents.cc index 72f4f62..0cb5df2 100644 --- a/content/test/test_web_contents.cc +++ b/content/test/test_web_contents.cc @@ -149,7 +149,7 @@ void TestWebContents::CommitPendingNavigation() { // Simulate the SwapOut_ACK that fires if you commit a cross-site navigation // without making any network requests. if (old_rvh != rvh) - static_cast<RenderViewHostImpl*>(old_rvh)->OnSwapOutACK(false); + static_cast<RenderViewHostImpl*>(old_rvh)->OnSwappedOut(false); } void TestWebContents::ProceedWithCrossSiteNavigation() { |