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

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

Issue 2945093002: Use WebViewHelper::LocalMainFrame where possible. (Closed)
Patch Set: 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 a8ea0ab1b485e3d2a0db295f5f722fcc191bf074..87551347e8d51860b8255bd43034746abb8bba34 100644
--- a/third_party/WebKit/Source/web/tests/PrerenderingTest.cpp
+++ b/third_party/WebKit/Source/web/tests/PrerenderingTest.cpp
@@ -181,7 +181,7 @@ class PrerenderingTest : public ::testing::Test {
}
void Close() {
- web_view_helper_.WebView()->MainFrameImpl()->CollectGarbage();
+ web_view_helper_.LocalMainFrame()->CollectGarbage();
web_view_helper_.Reset();
WebCache::Clear();
@@ -189,7 +189,7 @@ class PrerenderingTest : public ::testing::Test {
Element& Console() {
Document* document =
- web_view_helper_.WebView()->MainFrameImpl()->GetFrame()->GetDocument();
+ web_view_helper_.LocalMainFrame()->GetFrame()->GetDocument();
Element* console = document->getElementById("console");
DCHECK(isHTMLUListElement(console));
return *console;
@@ -210,7 +210,7 @@ class PrerenderingTest : public ::testing::Test {
}
void ExecuteScript(const char* code) {
- web_view_helper_.WebView()->MainFrameImpl()->ExecuteScript(
+ web_view_helper_.LocalMainFrame()->ExecuteScript(
WebScriptSource(WebString::FromUTF8(code)));
}

Powered by Google App Engine
This is Rietveld 408576698