| 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..5f87e69191bf4af7ca50dc799482dc8aa00ebacc 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 ClientNativePixmapFactory;
|
| +} // 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::ClientNativePixmapFactory> client_native_pixmap_factory_;
|
| +#endif
|
|
|
| scoped_ptr<ResourceDispatcherHostImpl> resource_dispatcher_host_;
|
| scoped_ptr<MediaStreamManager> media_stream_manager_;
|
|
|