| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 void WebViewFrameWidget::compositeAndReadbackAsync( | 76 void WebViewFrameWidget::compositeAndReadbackAsync( |
| 77 WebCompositeAndReadbackAsyncCallback* callback) { | 77 WebCompositeAndReadbackAsyncCallback* callback) { |
| 78 return m_webView->compositeAndReadbackAsync(callback); | 78 return m_webView->compositeAndReadbackAsync(callback); |
| 79 } | 79 } |
| 80 | 80 |
| 81 void WebViewFrameWidget::themeChanged() { | 81 void WebViewFrameWidget::themeChanged() { |
| 82 return m_webView->themeChanged(); | 82 return m_webView->themeChanged(); |
| 83 } | 83 } |
| 84 | 84 |
| 85 WebInputEventResult WebViewFrameWidget::handleInputEvent( | 85 WebInputEventResult WebViewFrameWidget::handleInputEvent( |
| 86 const WebInputEvent& event) { | 86 const WebInputEvent& event, |
| 87 return m_webView->handleInputEvent(event); | 87 const std::vector<const WebInputEvent*>& coalescedEvents) { |
| 88 return m_webView->handleInputEvent(event, coalescedEvents); |
| 88 } | 89 } |
| 89 | 90 |
| 90 void WebViewFrameWidget::setCursorVisibilityState(bool isVisible) { | 91 void WebViewFrameWidget::setCursorVisibilityState(bool isVisible) { |
| 91 return m_webView->setCursorVisibilityState(isVisible); | 92 return m_webView->setCursorVisibilityState(isVisible); |
| 92 } | 93 } |
| 93 | 94 |
| 94 bool WebViewFrameWidget::hasTouchEventHandlersAt(const WebPoint& point) { | 95 bool WebViewFrameWidget::hasTouchEventHandlersAt(const WebPoint& point) { |
| 95 return m_webView->hasTouchEventHandlersAt(point); | 96 return m_webView->hasTouchEventHandlersAt(point); |
| 96 } | 97 } |
| 97 | 98 |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 void WebViewFrameWidget::detachCompositorAnimationTimeline( | 257 void WebViewFrameWidget::detachCompositorAnimationTimeline( |
| 257 CompositorAnimationTimeline* compositorTimeline) { | 258 CompositorAnimationTimeline* compositorTimeline) { |
| 258 m_webView->detachCompositorAnimationTimeline(compositorTimeline); | 259 m_webView->detachCompositorAnimationTimeline(compositorTimeline); |
| 259 } | 260 } |
| 260 | 261 |
| 261 HitTestResult WebViewFrameWidget::coreHitTestResultAt(const WebPoint& point) { | 262 HitTestResult WebViewFrameWidget::coreHitTestResultAt(const WebPoint& point) { |
| 262 return m_webView->coreHitTestResultAt(point); | 263 return m_webView->coreHitTestResultAt(point); |
| 263 } | 264 } |
| 264 | 265 |
| 265 } // namespace blink | 266 } // namespace blink |
| OLD | NEW |