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

Unified Diff: chrome/browser/chrome_browser_main_linux.h

Issue 10069007: Media Gallery: Move MediaDeviceNotificationsLinux from content to chrome. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 8 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: chrome/browser/chrome_browser_main_linux.h
===================================================================
--- chrome/browser/chrome_browser_main_linux.h (revision 131949)
+++ chrome/browser/chrome_browser_main_linux.h (working copy)
@@ -9,8 +9,13 @@
#pragma once
#include "base/compiler_specific.h"
+#include "base/memory/ref_counted.h"
#include "chrome/browser/chrome_browser_main_posix.h"
+namespace chrome {
+class MediaDeviceNotificationsLinux;
+}
+
class ChromeBrowserMainPartsLinux : public ChromeBrowserMainPartsPosix {
public:
explicit ChromeBrowserMainPartsLinux(
@@ -20,6 +25,9 @@
virtual void PreProfileInit() OVERRIDE;
private:
+ scoped_refptr<chrome::MediaDeviceNotificationsLinux>
+ media_device_notifications_linux_;
+
DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsLinux);
};

Powered by Google App Engine
This is Rietveld 408576698