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

Unified Diff: content/renderer/render_thread_impl.h

Issue 1248713002: ozone: ClientPixmapManager passes VGEM fd from browser to renderer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rename to ClientNativePixmapFactory Created 5 years, 4 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: content/renderer/render_thread_impl.h
diff --git a/content/renderer/render_thread_impl.h b/content/renderer/render_thread_impl.h
index 8e99eaf2566f61e712fbd9584f634ed33a1b9004..d676997e9e34120c5d21fc30de86702defabccf2 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(USE_OZONE)
+class ChildClientNativePixmapFactoryMessageFilter;
+#endif
+
#if defined(COMPILER_MSVC)
// See explanation for other RenderViewHostImpl which is the same issue.
#pragma warning(push)
@@ -581,6 +585,11 @@ class CONTENT_EXPORT RenderThreadImpl
scoped_refptr<BluetoothMessageFilter> bluetooth_message_filter_;
+#if defined(USE_OZONE)
+ scoped_refptr<ChildClientNativePixmapFactoryMessageFilter>
+ client_native_pixmap_factory_message_filter_;
+#endif
+
scoped_refptr<cc_blink::ContextProviderWebContext>
shared_main_thread_contexts_;

Powered by Google App Engine
This is Rietveld 408576698