| Index: third_party/WebKit/Source/core/frame/DOMVisualViewport.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/DOMVisualViewport.cpp b/third_party/WebKit/Source/core/frame/DOMVisualViewport.cpp
|
| index 620fe5f4fdaf3cd9e73b11802c160e0ec15c4b87..2eae2a1878b4e91e7ccdab438068bb4be18efcf3 100644
|
| --- a/third_party/WebKit/Source/core/frame/DOMVisualViewport.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/DOMVisualViewport.cpp
|
| @@ -85,26 +85,6 @@ double DOMVisualViewport::scrollTop()
|
| return 0;
|
| }
|
|
|
| -void DOMVisualViewport::setScrollLeft(double x)
|
| -{
|
| - LocalFrame* frame = m_window->frame();
|
| - if (!frame || !frame->isMainFrame())
|
| - return;
|
| -
|
| - if (FrameHost* host = frame->host())
|
| - host->visualViewport().setScrollLeft(x);
|
| -}
|
| -
|
| -void DOMVisualViewport::setScrollTop(double y)
|
| -{
|
| - LocalFrame* frame = m_window->frame();
|
| - if (!frame || !frame->isMainFrame())
|
| - return;
|
| -
|
| - if (FrameHost* host = frame->host())
|
| - host->visualViewport().setScrollTop(y);
|
| -}
|
| -
|
| double DOMVisualViewport::clientWidth()
|
| {
|
| LocalFrame* frame = m_window->frame();
|
|
|