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

Unified Diff: content/browser/browser_main_loop.h

Issue 1128113011: ozone: Introduce ClientPixmap and ClientPixmapFactory for non-GPU processes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed nits Created 5 years, 5 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/browser/browser_main_loop.h
diff --git a/content/browser/browser_main_loop.h b/content/browser/browser_main_loop.h
index 14478ec5fbff89204eaa7d59427e5b49e8f3092c..2df27ab9d5b8441347c036c6693afb7a8f4255bd 100644
--- a/content/browser/browser_main_loop.h
+++ b/content/browser/browser_main_loop.h
@@ -39,6 +39,12 @@ namespace net {
class NetworkChangeNotifier;
} // namespace net
+#if defined(USE_OZONE)
+namespace ui {
+class ClientNativePixmapManager;
+} // namespace ui
+#endif
+
namespace content {
class BrowserMainParts;
class BrowserOnlineStateObserver;
@@ -245,6 +251,9 @@ class CONTENT_EXPORT BrowserMainLoop {
#elif defined(OS_MACOSX) && !defined(OS_IOS)
scoped_ptr<DeviceMonitorMac> device_monitor_mac_;
#endif
+#if defined(USE_OZONE)
+ scoped_ptr<ui::ClientNativePixmapManager> client_native_pixmap_manager_;
+#endif
scoped_ptr<ResourceDispatcherHostImpl> resource_dispatcher_host_;
scoped_ptr<MediaStreamManager> media_stream_manager_;

Powered by Google App Engine
This is Rietveld 408576698