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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 void WebViewFrameWidget::setBaseBackgroundColor(WebColor color) | 255 void WebViewFrameWidget::setBaseBackgroundColor(WebColor color) |
256 { | 256 { |
257 m_webView->setBaseBackgroundColor(color); | 257 m_webView->setBaseBackgroundColor(color); |
258 } | 258 } |
259 | 259 |
260 void WebViewFrameWidget::scheduleAnimation() | 260 void WebViewFrameWidget::scheduleAnimation() |
261 { | 261 { |
262 m_webView->scheduleAnimation(); | 262 m_webView->scheduleAnimation(); |
263 } | 263 } |
264 | 264 |
265 CompositorProxyClient* WebViewFrameWidget::createCompositorProxyClient() | 265 CompositorProxyClient* WebViewFrameWidget::createCompositorProxyClient(WorkerCli
ents& clients) |
266 { | 266 { |
267 return m_webView->createCompositorProxyClient(); | 267 return m_webView->createCompositorProxyClient(clients); |
268 } | 268 } |
269 | 269 |
270 void WebViewFrameWidget::setRootGraphicsLayer(GraphicsLayer* layer) | 270 void WebViewFrameWidget::setRootGraphicsLayer(GraphicsLayer* layer) |
271 { | 271 { |
272 m_webView->setRootGraphicsLayer(layer); | 272 m_webView->setRootGraphicsLayer(layer); |
273 } | 273 } |
274 | 274 |
275 void WebViewFrameWidget::attachCompositorAnimationTimeline(CompositorAnimationTi
meline* compositorTimeline) | 275 void WebViewFrameWidget::attachCompositorAnimationTimeline(CompositorAnimationTi
meline* compositorTimeline) |
276 { | 276 { |
277 m_webView->attachCompositorAnimationTimeline(compositorTimeline); | 277 m_webView->attachCompositorAnimationTimeline(compositorTimeline); |
278 } | 278 } |
279 | 279 |
280 void WebViewFrameWidget::detachCompositorAnimationTimeline(CompositorAnimationTi
meline* compositorTimeline) | 280 void WebViewFrameWidget::detachCompositorAnimationTimeline(CompositorAnimationTi
meline* compositorTimeline) |
281 { | 281 { |
282 m_webView->detachCompositorAnimationTimeline(compositorTimeline); | 282 m_webView->detachCompositorAnimationTimeline(compositorTimeline); |
283 } | 283 } |
284 | 284 |
285 } // namespace blink | 285 } // namespace blink |
OLD | NEW |