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

Unified Diff: third_party/WebKit/Source/web/tests/WebFrameTest.cpp

Issue 2533683002: Move the code in ResourceFetcher handling calls from WebURLLoaderImpl to ResourceLoader (Closed)
Patch Set: Fix test Created 4 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/platform/weborigin/SecurityOrigin.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/tests/WebFrameTest.cpp
diff --git a/third_party/WebKit/Source/web/tests/WebFrameTest.cpp b/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
index de74b3f7cd21a91814a67e805e498b91c07658e4..bdcc8024b1c131dc5e4a7e8e0874b676aed113f0 100644
--- a/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
+++ b/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
@@ -9697,14 +9697,14 @@ TEST_P(ParameterizedWebFrameTest, SuspendedPageLoadWithRemoteMainFrame) {
FrameTestHelpers::loadFrame(webLocalChild, m_baseURL + "foo.html");
LocalFrame* localChild = toWebLocalFrameImpl(webLocalChild)->frame();
EXPECT_FALSE(page->suspended());
- EXPECT_FALSE(localChild->document()->fetcher()->defersLoading());
+ EXPECT_FALSE(localChild->document()->fetcher()->context().defersLoading());
{
ScopedPageSuspender suspender;
EXPECT_TRUE(page->suspended());
- EXPECT_TRUE(localChild->document()->fetcher()->defersLoading());
+ EXPECT_TRUE(localChild->document()->fetcher()->context().defersLoading());
}
EXPECT_FALSE(page->suspended());
- EXPECT_FALSE(localChild->document()->fetcher()->defersLoading());
+ EXPECT_FALSE(localChild->document()->fetcher()->context().defersLoading());
view->close();
}
« no previous file with comments | « third_party/WebKit/Source/platform/weborigin/SecurityOrigin.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698