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

Unified Diff: content/renderer/render_thread_impl.h

Issue 1408123005: Android Webview IPC-based sync compositing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix win compile Created 5 years, 1 month 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
« no previous file with comments | « content/renderer/input/input_handler_manager_client.h ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_thread_impl.h
diff --git a/content/renderer/render_thread_impl.h b/content/renderer/render_thread_impl.h
index f7eef237bb9de39a121d580f439bb364ddb97845..068348776c98b8ca5a126652b6d4b7ab29e14bee 100644
--- a/content/renderer/render_thread_impl.h
+++ b/content/renderer/render_thread_impl.h
@@ -115,6 +115,10 @@ class VideoCaptureImplManager;
class WebGraphicsContext3DCommandBufferImpl;
class WebRTCIdentityService;
+#if defined(OS_ANDROID)
+class SynchronousCompositorFilter;
+#endif
+
#if defined(COMPILER_MSVC)
// See explanation for other RenderViewHostImpl which is the same issue.
#pragma warning(push)
@@ -280,6 +284,10 @@ class CONTENT_EXPORT RenderThreadImpl
RendererDemuxerAndroid* renderer_demuxer() {
return renderer_demuxer_.get();
}
+
+ SynchronousCompositorFilter* sync_compositor_message_filter() {
+ return sync_compositor_message_filter_.get();
+ }
#endif
// Creates the embedder implementation of WebMediaStreamCenter.
@@ -602,6 +610,10 @@ class CONTENT_EXPORT RenderThreadImpl
scoped_ptr<InputHandlerManager> input_handler_manager_;
scoped_refptr<CompositorForwardingMessageFilter> compositor_message_filter_;
+#if defined(OS_ANDROID)
+ scoped_refptr<SynchronousCompositorFilter> sync_compositor_message_filter_;
+#endif
+
scoped_refptr<BluetoothMessageFilter> bluetooth_message_filter_;
scoped_refptr<cc_blink::ContextProviderWebContext>
« no previous file with comments | « content/renderer/input/input_handler_manager_client.h ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698