Index: content/browser/browser_main_loop.h |
=================================================================== |
--- content/browser/browser_main_loop.h (revision 125282) |
+++ content/browser/browser_main_loop.h (working copy) |
@@ -31,6 +31,7 @@ |
class BrowserShutdownImpl; |
class BrowserThreadImpl; |
struct MainFunctionParams; |
+class MediaDeviceNotificationsLinux; |
class WebKitThread; |
// Implements the main browser loop stages called from |BrowserMain()|. |
@@ -86,6 +87,9 @@ |
scoped_ptr<AudioManager> audio_manager_; |
#if defined(OS_WIN) |
scoped_ptr<SystemMessageWindowWin> system_message_window_; |
+#elif defined(OS_LINUX) |
+ scoped_refptr<MediaDeviceNotificationsLinux> |
+ media_device_notifications_linux_; |
#endif |
// Destroy parts_ before main_message_loop_ (required) and before other |