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

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

Issue 2940863005: Move loading methods from WebFrame to WebLocalFrame. (Closed)
Patch Set: Fixing build problems introduced by rebasing... Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/web/tests/PrerenderingTest.cpp
diff --git a/third_party/WebKit/Source/web/tests/PrerenderingTest.cpp b/third_party/WebKit/Source/web/tests/PrerenderingTest.cpp
index cb75b42dc3a6452d620ef3a50ed72aa9276ba960..a8ea0ab1b485e3d2a0db295f5f722fcc191bf074 100644
--- a/third_party/WebKit/Source/web/tests/PrerenderingTest.cpp
+++ b/third_party/WebKit/Source/web/tests/PrerenderingTest.cpp
@@ -171,12 +171,12 @@ class PrerenderingTest : public ::testing::Test {
web_view_helper_.Initialize();
web_view_helper_.WebView()->SetPrerendererClient(&prerenderer_client_);
- FrameTestHelpers::LoadFrame(web_view_helper_.WebView()->MainFrame(),
+ FrameTestHelpers::LoadFrame(web_view_helper_.WebView()->MainFrameImpl(),
std::string(base_url) + file_name);
}
void NavigateAway() {
- FrameTestHelpers::LoadFrame(web_view_helper_.WebView()->MainFrame(),
+ FrameTestHelpers::LoadFrame(web_view_helper_.WebView()->MainFrameImpl(),
"about:blank");
}

Powered by Google App Engine
This is Rietveld 408576698