Index: third_party/WebKit/Source/web/ChromeClientImpl.cpp |
diff --git a/third_party/WebKit/Source/web/ChromeClientImpl.cpp b/third_party/WebKit/Source/web/ChromeClientImpl.cpp |
index 968b5e7126f073415917cb3864f06446937bd0c5..a2cdfb73c0a356d170d3c0d9be1f1b2a4fcf0681 100644 |
--- a/third_party/WebKit/Source/web/ChromeClientImpl.cpp |
+++ b/third_party/WebKit/Source/web/ChromeClientImpl.cpp |
@@ -1,4 +1,5 @@ |
/* |
+ void schedulePostCommitTask(PassOwnPtr<Closure>) override; |
* Copyright (C) 2009 Google Inc. All rights reserved. |
* Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
* |
@@ -998,6 +999,16 @@ void ChromeClientImpl::didUpdateTopControls() const |
m_webView->didUpdateTopControls(); |
} |
+CompositorProxyClient* ChromeClientImpl::createCompositorProxyClient() |
+{ |
+ return m_webView->createCompositorProxyClient(); |
+} |
+ |
+void ChromeClientImpl::schedulePostCommitTask(PassOwnPtr<Closure> task) |
+{ |
+ m_webView->schedulePostCommitTask(task); |
+} |
+ |
void ChromeClientImpl::registerPopupOpeningObserver(PopupOpeningObserver* observer) |
{ |
ASSERT(observer); |