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

Unified Diff: third_party/WebKit/Source/web/tests/WebViewTest.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
« no previous file with comments | « third_party/WebKit/Source/web/tests/WebFrameTest.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/WebViewTest.cpp
diff --git a/third_party/WebKit/Source/web/tests/WebViewTest.cpp b/third_party/WebKit/Source/web/tests/WebViewTest.cpp
index 4317d9967d7bd46baba61e6022674f15fc457adf..488fc2329c2dd647b84ff9689227bb7d650b936d 100644
--- a/third_party/WebKit/Source/web/tests/WebViewTest.cpp
+++ b/third_party/WebKit/Source/web/tests/WebViewTest.cpp
@@ -493,8 +493,7 @@ TEST_P(WebViewTest, SetBaseBackgroundColorAndBlendWithExistingContent) {
// Paint the root of the main frame in the way that CompositedLayerMapping
// would.
- LocalFrameView* view =
- web_view_helper_.WebView()->MainFrameImpl()->GetFrameView();
+ LocalFrameView* view = web_view_helper_.LocalMainFrame()->GetFrameView();
PaintLayer* root_layer = view->GetLayoutViewItem().Layer();
LayoutRect paint_rect(0, 0, kWidth, kHeight);
PaintLayerPaintingInfo painting_info(root_layer, paint_rect,
@@ -2011,8 +2010,7 @@ bool WebViewTest::TapElementById(WebInputEvent::Type type,
const WebString& id) {
DCHECK(web_view_helper_.WebView());
Element* element = static_cast<Element*>(
- web_view_helper_.WebView()->MainFrameImpl()->GetDocument().GetElementById(
- id));
+ web_view_helper_.LocalMainFrame()->GetDocument().GetElementById(id));
return TapElement(type, element);
}
@@ -3192,7 +3190,7 @@ TEST_P(WebViewTest, AddFrameInCloseURLUnload) {
RegisterMockedHttpURLLoad("add_frame_in_unload.html");
web_view_helper_.InitializeAndLoad(base_url_ + "add_frame_in_unload.html",
&frame_client);
- web_view_helper_.WebView()->MainFrameImpl()->DispatchUnloadEvent();
+ web_view_helper_.LocalMainFrame()->DispatchUnloadEvent();
EXPECT_EQ(0, frame_client.Count());
web_view_helper_.Reset();
}
@@ -3556,7 +3554,7 @@ TEST_P(WebViewTest, AutoResizeSubtreeLayout) {
LoadFrame(web_view->MainFrameImpl(), url);
LocalFrameView* frame_view =
- web_view_helper_.WebView()->MainFrameImpl()->GetFrameView();
+ web_view_helper_.LocalMainFrame()->GetFrameView();
// Auto-resizing used to DCHECK(needsLayout()) in LayoutBlockFlow::layout.
// This EXPECT is merely a dummy. The real test is that we don't trigger
@@ -3960,7 +3958,7 @@ TEST_P(WebViewTest, SubframeBeforeUnloadUseCounter) {
WebViewBase* web_view =
web_view_helper_.InitializeAndLoad(base_url_ + "single_iframe.html");
- WebLocalFrame* frame = web_view_helper_.WebView()->MainFrameImpl();
+ WebLocalFrame* frame = web_view_helper_.LocalMainFrame();
Document* document =
ToLocalFrame(web_view_helper_.WebView()->GetPage()->MainFrame())
->GetDocument();
« no previous file with comments | « third_party/WebKit/Source/web/tests/WebFrameTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698