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

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 5 years 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 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);
« no previous file with comments | « third_party/WebKit/Source/web/ChromeClientImpl.h ('k') | third_party/WebKit/Source/web/CompositorProxyClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698