| 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();
|
| }
|
|
|