| 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/WebInputMethodControllerImpl.h" | 7 #include "web/WebInputMethodControllerImpl.h" |
| 8 #include "web/WebLocalFrameImpl.h" | 8 #include "web/WebLocalFrameImpl.h" |
| 9 #include "web/WebViewImpl.h" | 9 #include "web/WebViewImpl.h" |
| 10 | 10 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 void WebViewFrameWidget::compositeAndReadbackAsync( | 77 void WebViewFrameWidget::compositeAndReadbackAsync( |
| 78 WebCompositeAndReadbackAsyncCallback* callback) { | 78 WebCompositeAndReadbackAsyncCallback* callback) { |
| 79 return m_webView->compositeAndReadbackAsync(callback); | 79 return m_webView->compositeAndReadbackAsync(callback); |
| 80 } | 80 } |
| 81 | 81 |
| 82 void WebViewFrameWidget::themeChanged() { | 82 void WebViewFrameWidget::themeChanged() { |
| 83 return m_webView->themeChanged(); | 83 return m_webView->themeChanged(); |
| 84 } | 84 } |
| 85 | 85 |
| 86 WebInputEventResult WebViewFrameWidget::handleInputEvent( | 86 WebInputEventResult WebViewFrameWidget::handleInputEvent( |
| 87 const WebInputEvent& event) { | 87 const WebCoalescedInputEvent& event) { |
| 88 return m_webView->handleInputEvent(event); | 88 return m_webView->handleInputEvent(event); |
| 89 } | 89 } |
| 90 | 90 |
| 91 void WebViewFrameWidget::setCursorVisibilityState(bool isVisible) { | 91 void WebViewFrameWidget::setCursorVisibilityState(bool isVisible) { |
| 92 return m_webView->setCursorVisibilityState(isVisible); | 92 return m_webView->setCursorVisibilityState(isVisible); |
| 93 } | 93 } |
| 94 | 94 |
| 95 bool WebViewFrameWidget::hasTouchEventHandlersAt(const WebPoint& point) { | 95 bool WebViewFrameWidget::hasTouchEventHandlersAt(const WebPoint& point) { |
| 96 return m_webView->hasTouchEventHandlersAt(point); | 96 return m_webView->hasTouchEventHandlersAt(point); |
| 97 } | 97 } |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 | 233 |
| 234 CompositorAnimationHost* WebViewFrameWidget::animationHost() const { | 234 CompositorAnimationHost* WebViewFrameWidget::animationHost() const { |
| 235 return m_webView->animationHost(); | 235 return m_webView->animationHost(); |
| 236 } | 236 } |
| 237 | 237 |
| 238 HitTestResult WebViewFrameWidget::coreHitTestResultAt(const WebPoint& point) { | 238 HitTestResult WebViewFrameWidget::coreHitTestResultAt(const WebPoint& point) { |
| 239 return m_webView->coreHitTestResultAt(point); | 239 return m_webView->coreHitTestResultAt(point); |
| 240 } | 240 } |
| 241 | 241 |
| 242 } // namespace blink | 242 } // namespace blink |
| OLD | NEW |