summaryrefslogtreecommitdiff
path: root/Source/WebKit/chromium/src/WebLayerTreeViewImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit/chromium/src/WebLayerTreeViewImpl.cpp')
-rw-r--r--Source/WebKit/chromium/src/WebLayerTreeViewImpl.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/WebKit/chromium/src/WebLayerTreeViewImpl.cpp b/Source/WebKit/chromium/src/WebLayerTreeViewImpl.cpp
index 161f9e932..1c0a0e816 100644
--- a/Source/WebKit/chromium/src/WebLayerTreeViewImpl.cpp
+++ b/Source/WebKit/chromium/src/WebLayerTreeViewImpl.cpp
@@ -65,6 +65,11 @@ void WebLayerTreeViewImpl::willBeginFrame()
m_client->willBeginFrame();
}
+void WebLayerTreeViewImpl::didBeginFrame()
+{
+ m_client->didBeginFrame();
+}
+
void WebLayerTreeViewImpl::updateAnimations(double monotonicFrameBeginTime)
{
m_client->updateAnimations(monotonicFrameBeginTime);
@@ -94,6 +99,11 @@ void WebLayerTreeViewImpl::didRecreateContext(bool success)
m_client->didRebindGraphicsContext(success);
}
+void WebLayerTreeViewImpl::willCommit()
+{
+ m_client->willCommit();
+}
+
void WebLayerTreeViewImpl::didCommit()
{
m_client->didCommit();