| Index: third_party/WebKit/Source/web/tests/ScrollingCoordinatorTest.cpp | 
| diff --git a/third_party/WebKit/Source/web/tests/ScrollingCoordinatorTest.cpp b/third_party/WebKit/Source/web/tests/ScrollingCoordinatorTest.cpp | 
| index 32cae1d7439160baa71b9fb624f553e0612029a7..253107f184de62e77d9bbc9c76626d435cb1cbd0 100644 | 
| --- a/third_party/WebKit/Source/web/tests/ScrollingCoordinatorTest.cpp | 
| +++ b/third_party/WebKit/Source/web/tests/ScrollingCoordinatorTest.cpp | 
| @@ -665,10 +665,10 @@ TEST_P(ScrollingCoordinatorTest, iframeScrolling) { | 
|  | 
| LayoutPart* layoutPart = toLayoutPart(layoutObject); | 
| ASSERT_TRUE(layoutPart); | 
| -  ASSERT_TRUE(layoutPart->widget()); | 
| -  ASSERT_TRUE(layoutPart->widget()->isFrameView()); | 
| +  ASSERT_TRUE(layoutPart->frameViewBase()); | 
| +  ASSERT_TRUE(layoutPart->frameViewBase()->isFrameView()); | 
|  | 
| -  FrameView* innerFrameView = toFrameView(layoutPart->widget()); | 
| +  FrameView* innerFrameView = toFrameView(layoutPart->frameViewBase()); | 
| LayoutViewItem innerLayoutViewItem = innerFrameView->layoutViewItem(); | 
| ASSERT_FALSE(innerLayoutViewItem.isNull()); | 
|  | 
| @@ -716,10 +716,10 @@ TEST_P(ScrollingCoordinatorTest, rtlIframe) { | 
|  | 
| LayoutPart* layoutPart = toLayoutPart(layoutObject); | 
| ASSERT_TRUE(layoutPart); | 
| -  ASSERT_TRUE(layoutPart->widget()); | 
| -  ASSERT_TRUE(layoutPart->widget()->isFrameView()); | 
| +  ASSERT_TRUE(layoutPart->frameViewBase()); | 
| +  ASSERT_TRUE(layoutPart->frameViewBase()->isFrameView()); | 
|  | 
| -  FrameView* innerFrameView = toFrameView(layoutPart->widget()); | 
| +  FrameView* innerFrameView = toFrameView(layoutPart->frameViewBase()); | 
| LayoutViewItem innerLayoutViewItem = innerFrameView->layoutViewItem(); | 
| ASSERT_FALSE(innerLayoutViewItem.isNull()); | 
|  | 
| @@ -893,10 +893,10 @@ TEST_P(ScrollingCoordinatorTest, | 
|  | 
| LayoutPart* layoutPart = toLayoutPart(layoutObject); | 
| ASSERT_TRUE(layoutPart); | 
| -  ASSERT_TRUE(layoutPart->widget()); | 
| -  ASSERT_TRUE(layoutPart->widget()->isFrameView()); | 
| +  ASSERT_TRUE(layoutPart->frameViewBase()); | 
| +  ASSERT_TRUE(layoutPart->frameViewBase()->isFrameView()); | 
|  | 
| -  FrameView* innerFrameView = toFrameView(layoutPart->widget()); | 
| +  FrameView* innerFrameView = toFrameView(layoutPart->frameViewBase()); | 
| LayoutViewItem innerLayoutViewItem = innerFrameView->layoutViewItem(); | 
| ASSERT_FALSE(innerLayoutViewItem.isNull()); | 
|  | 
|  |