Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(525)

Side by Side Diff: third_party/WebKit/Source/web/WebViewFrameWidget.cpp

Issue 2515363002: Introduce AnimationWorkletProxyClient and necessary plumbing to get it in worklet messaging proxy. (Closed)
Patch Set: Remove unnecessary PLATFORM_EXPORT Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 208
209 WebInputMethodControllerImpl* 209 WebInputMethodControllerImpl*
210 WebViewFrameWidget::getActiveWebInputMethodController() const { 210 WebViewFrameWidget::getActiveWebInputMethodController() const {
211 return m_webView->getActiveWebInputMethodController(); 211 return m_webView->getActiveWebInputMethodController();
212 } 212 }
213 213
214 void WebViewFrameWidget::scheduleAnimation() { 214 void WebViewFrameWidget::scheduleAnimation() {
215 m_webView->scheduleAnimationForWidget(); 215 m_webView->scheduleAnimationForWidget();
216 } 216 }
217 217
218 CompositorProxyClient* WebViewFrameWidget::createCompositorProxyClient() { 218 CompositorWorkerProxyClient*
219 return m_webView->createCompositorProxyClient(); 219 WebViewFrameWidget::createCompositorWorkerProxyClient() {
220 return m_webView->createCompositorWorkerProxyClient();
221 }
222
223 AnimationWorkletProxyClient*
224 WebViewFrameWidget::createAnimationWorkletProxyClient() {
225 return m_webView->createAnimationWorkletProxyClient();
220 } 226 }
221 227
222 void WebViewFrameWidget::setRootGraphicsLayer(GraphicsLayer* layer) { 228 void WebViewFrameWidget::setRootGraphicsLayer(GraphicsLayer* layer) {
223 m_webView->setRootGraphicsLayer(layer); 229 m_webView->setRootGraphicsLayer(layer);
224 } 230 }
225 231
226 void WebViewFrameWidget::setRootLayer(WebLayer* layer) { 232 void WebViewFrameWidget::setRootLayer(WebLayer* layer) {
227 m_webView->setRootLayer(layer); 233 m_webView->setRootLayer(layer);
228 } 234 }
229 235
230 WebLayerTreeView* WebViewFrameWidget::getLayerTreeView() const { 236 WebLayerTreeView* WebViewFrameWidget::getLayerTreeView() const {
231 return m_webView->layerTreeView(); 237 return m_webView->layerTreeView();
232 } 238 }
233 239
234 CompositorAnimationHost* WebViewFrameWidget::animationHost() const { 240 CompositorAnimationHost* WebViewFrameWidget::animationHost() const {
235 return m_webView->animationHost(); 241 return m_webView->animationHost();
236 } 242 }
237 243
238 HitTestResult WebViewFrameWidget::coreHitTestResultAt(const WebPoint& point) { 244 HitTestResult WebViewFrameWidget::coreHitTestResultAt(const WebPoint& point) {
239 return m_webView->coreHitTestResultAt(point); 245 return m_webView->coreHitTestResultAt(point);
240 } 246 }
241 247
242 } // namespace blink 248 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebViewFrameWidget.h ('k') | third_party/WebKit/Source/web/WebViewImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698