| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be found | 2 // Use of this source code is governed by a BSD-style license that can be found |
| 3 // in the LICENSE file. | 3 // in the LICENSE file. |
| 4 | 4 |
| 5 #include "web/WebViewFrameWidget.h" | 5 #include "web/WebViewFrameWidget.h" |
| 6 | 6 |
| 7 #include "web/WebLocalFrameImpl.h" | 7 #include "web/WebLocalFrameImpl.h" |
| 8 #include "web/WebViewImpl.h" | 8 #include "web/WebViewImpl.h" |
| 9 | 9 |
| 10 namespace blink { | 10 namespace blink { |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 void WebViewFrameWidget::attachCompositorAnimationTimeline(CompositorAnimationTi
meline* compositorTimeline) | 285 void WebViewFrameWidget::attachCompositorAnimationTimeline(CompositorAnimationTi
meline* compositorTimeline) |
| 286 { | 286 { |
| 287 m_webView->attachCompositorAnimationTimeline(compositorTimeline); | 287 m_webView->attachCompositorAnimationTimeline(compositorTimeline); |
| 288 } | 288 } |
| 289 | 289 |
| 290 void WebViewFrameWidget::detachCompositorAnimationTimeline(CompositorAnimationTi
meline* compositorTimeline) | 290 void WebViewFrameWidget::detachCompositorAnimationTimeline(CompositorAnimationTi
meline* compositorTimeline) |
| 291 { | 291 { |
| 292 m_webView->detachCompositorAnimationTimeline(compositorTimeline); | 292 m_webView->detachCompositorAnimationTimeline(compositorTimeline); |
| 293 } | 293 } |
| 294 | 294 |
| 295 HitTestResult WebViewFrameWidget::coreHitTestResultAt(const WebPoint& point) |
| 296 { |
| 297 return m_webView->coreHitTestResultAt(point); |
| 298 } |
| 299 |
| 295 } // namespace blink | 300 } // namespace blink |
| OLD | NEW |