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

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

Issue 1956893003: compositor-worker: Add CompositorProxyClient worker client of CompositorWorker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Create TestCompositorProxyClient for CompositorWorkerThreadTest. Created 4 years, 7 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 ab5b0e7b38da10ede99bb915ea7f6405b1e21267..d86f4cc7c2c4de7e5d29cb8dbd61b3cac21637f5 100644
--- a/third_party/WebKit/Source/web/ChromeClientImpl.cpp
+++ b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
@@ -1073,6 +1073,11 @@ void ChromeClientImpl::didUpdateTopControls() const
m_webView->didUpdateTopControls();
}
+CompositorProxyClient* ChromeClientImpl::createCompositorProxyClient()
+{
+ return m_webView->createCompositorProxyClient();
dcheng 2016/05/12 16:56:15 Why does this have to go through WebView? Why can'
flackr 2016/05/12 17:00:51 In this patch it absolutely could - I can move it
dcheng 2016/05/12 17:09:29 I don't think that patch will work well with OOPI:
+}
+
void ChromeClientImpl::registerPopupOpeningObserver(PopupOpeningObserver* observer)
{
DCHECK(observer);

Powered by Google App Engine
This is Rietveld 408576698