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

Unified Diff: third_party/WebKit/Source/web/tests/ViewportTest.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/ViewportTest.cpp
diff --git a/third_party/WebKit/Source/web/tests/ViewportTest.cpp b/third_party/WebKit/Source/web/tests/ViewportTest.cpp
index 7f9d74e892857f764422f850775cdef497202cea..7a8550e1024cd00f033d831a5986452712ee3cc0 100644
--- a/third_party/WebKit/Source/web/tests/ViewportTest.cpp
+++ b/third_party/WebKit/Source/web/tests/ViewportTest.cpp
@@ -2882,7 +2882,7 @@ TEST_F(ViewportTest, viewportLegacyXHTMLMPRemoveAndAdd) {
EXPECT_NEAR(5.0f, constraints.maximum_scale, 0.01f);
EXPECT_TRUE(page->GetViewportDescription().user_zoom);
- ExecuteScript(web_view_helper.WebView()->MainFrameImpl(),
+ ExecuteScript(web_view_helper.LocalMainFrame(),
"originalDoctype = document.doctype;"
"document.removeChild(originalDoctype);");
@@ -2895,7 +2895,7 @@ TEST_F(ViewportTest, viewportLegacyXHTMLMPRemoveAndAdd) {
EXPECT_NEAR(5.0f, constraints.maximum_scale, 0.01f);
EXPECT_TRUE(page->GetViewportDescription().user_zoom);
- ExecuteScript(web_view_helper.WebView()->MainFrameImpl(),
+ ExecuteScript(web_view_helper.LocalMainFrame(),
"document.insertBefore(originalDoctype, document.firstChild);");
constraints = RunViewportTest(page, 320, 352);
« no previous file with comments | « third_party/WebKit/Source/web/tests/TextFinderTest.cpp ('k') | third_party/WebKit/Source/web/tests/VisualViewportTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698