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 "config.h" | 5 #include "config.h" |
6 #include "web/WebViewFrameWidget.h" | 6 #include "web/WebViewFrameWidget.h" |
7 | 7 |
8 #include "web/WebLocalFrameImpl.h" | 8 #include "web/WebLocalFrameImpl.h" |
9 #include "web/WebViewImpl.h" | 9 #include "web/WebViewImpl.h" |
10 | 10 |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 void WebViewFrameWidget::compositeAndReadbackAsync(WebCompositeAndReadbackAsyncC
allback* callback) | 100 void WebViewFrameWidget::compositeAndReadbackAsync(WebCompositeAndReadbackAsyncC
allback* callback) |
101 { | 101 { |
102 return m_webView->compositeAndReadbackAsync(callback); | 102 return m_webView->compositeAndReadbackAsync(callback); |
103 } | 103 } |
104 | 104 |
105 void WebViewFrameWidget::themeChanged() | 105 void WebViewFrameWidget::themeChanged() |
106 { | 106 { |
107 return m_webView->themeChanged(); | 107 return m_webView->themeChanged(); |
108 } | 108 } |
109 | 109 |
110 bool WebViewFrameWidget::handleInputEvent(const WebInputEvent& event) | 110 WebInputEventResult WebViewFrameWidget::handleInputEvent(const WebInputEvent& ev
ent) |
111 { | 111 { |
112 return m_webView->handleInputEvent(event); | 112 return m_webView->handleInputEvent(event); |
113 } | 113 } |
114 | 114 |
115 void WebViewFrameWidget::setCursorVisibilityState(bool isVisible) | 115 void WebViewFrameWidget::setCursorVisibilityState(bool isVisible) |
116 { | 116 { |
117 return m_webView->setCursorVisibilityState(isVisible); | 117 return m_webView->setCursorVisibilityState(isVisible); |
118 } | 118 } |
119 | 119 |
120 bool WebViewFrameWidget::hasTouchEventHandlersAt(const WebPoint& point) | 120 bool WebViewFrameWidget::hasTouchEventHandlersAt(const WebPoint& point) |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 { | 260 { |
261 return m_webView->updateTopControlsState(constraints, current, animate); | 261 return m_webView->updateTopControlsState(constraints, current, animate); |
262 } | 262 } |
263 | 263 |
264 void WebViewFrameWidget::setVisibilityState(WebPageVisibilityState visibilitySta
te, bool isInitialState) | 264 void WebViewFrameWidget::setVisibilityState(WebPageVisibilityState visibilitySta
te, bool isInitialState) |
265 { | 265 { |
266 return m_webView->setVisibilityState(visibilityState, isInitialState); | 266 return m_webView->setVisibilityState(visibilityState, isInitialState); |
267 } | 267 } |
268 | 268 |
269 } // namespace blink | 269 } // namespace blink |
OLD | NEW |