| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 void WebViewFrameWidget::updateAllLifecyclePhases() | 69 void WebViewFrameWidget::updateAllLifecyclePhases() |
| 70 { | 70 { |
| 71 return m_webView->updateAllLifecyclePhases(); | 71 return m_webView->updateAllLifecyclePhases(); |
| 72 } | 72 } |
| 73 | 73 |
| 74 void WebViewFrameWidget::paint(WebCanvas* canvas, const WebRect& viewPort) | 74 void WebViewFrameWidget::paint(WebCanvas* canvas, const WebRect& viewPort) |
| 75 { | 75 { |
| 76 return m_webView->paint(canvas, viewPort); | 76 return m_webView->paint(canvas, viewPort); |
| 77 } | 77 } |
| 78 | 78 |
| 79 void WebViewFrameWidget::layoutAndPaintAsync(WebLayoutAndPaintAsyncCallback* cal
lback) | |
| 80 { | |
| 81 return m_webView->layoutAndPaintAsync(callback); | |
| 82 } | |
| 83 | |
| 84 void WebViewFrameWidget::compositeAndReadbackAsync(WebCompositeAndReadbackAsyncC
allback* callback) | 79 void WebViewFrameWidget::compositeAndReadbackAsync(WebCompositeAndReadbackAsyncC
allback* callback) |
| 85 { | 80 { |
| 86 return m_webView->compositeAndReadbackAsync(callback); | 81 return m_webView->compositeAndReadbackAsync(callback); |
| 87 } | 82 } |
| 88 | 83 |
| 89 void WebViewFrameWidget::themeChanged() | 84 void WebViewFrameWidget::themeChanged() |
| 90 { | 85 { |
| 91 return m_webView->themeChanged(); | 86 return m_webView->themeChanged(); |
| 92 } | 87 } |
| 93 | 88 |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 { | 254 { |
| 260 m_webView->scheduleAnimation(); | 255 m_webView->scheduleAnimation(); |
| 261 } | 256 } |
| 262 | 257 |
| 263 CompositorProxyClient* WebViewFrameWidget::createCompositorProxyClient() | 258 CompositorProxyClient* WebViewFrameWidget::createCompositorProxyClient() |
| 264 { | 259 { |
| 265 return m_webView->createCompositorProxyClient(); | 260 return m_webView->createCompositorProxyClient(); |
| 266 } | 261 } |
| 267 | 262 |
| 268 } // namespace blink | 263 } // namespace blink |
| OLD | NEW |