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

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: clang 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
« no previous file with comments | « no previous file | chrome/browser/chrome_browser_main_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chrome_browser_main_linux.h
===================================================================
--- chrome/browser/chrome_browser_main_linux.h (revision 132051)
+++ chrome/browser/chrome_browser_main_linux.h (working copy)
@@ -9,17 +9,26 @@
#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(
const content::MainFunctionParams& parameters);
+ virtual ~ChromeBrowserMainPartsLinux();
// ChromeBrowserMainParts overrides.
virtual void PreProfileInit() OVERRIDE;
private:
+ scoped_refptr<chrome::MediaDeviceNotificationsLinux>
+ media_device_notifications_linux_;
+
DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsLinux);
};
« no previous file with comments | « no previous file | chrome/browser/chrome_browser_main_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698