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

Unified Diff: third_party/WebKit/Source/web/ChromeClientImpl.cpp

Issue 1547893003: WIP - compositor worker mega patch. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
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 e728623d5c978578683a6067ec101d77ecff7e96..e56cdfbd607ee5ad40e6400f48905ba513eaba53 100644
--- a/third_party/WebKit/Source/web/ChromeClientImpl.cpp
+++ b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
@@ -993,6 +993,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);
« no previous file with comments | « third_party/WebKit/Source/web/ChromeClientImpl.h ('k') | third_party/WebKit/Source/web/CompositorMutatorImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698