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

Unified Diff: content/browser/browser_main_loop.h

Issue 10829073: Add DeviceMonitorLinux in BrowserMainLoop. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 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
« no previous file with comments | « no previous file | content/browser/browser_main_loop.cc » ('j') | content/browser/browser_main_loop.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/browser_main_loop.h
===================================================================
--- content/browser/browser_main_loop.h (revision 148913)
+++ content/browser/browser_main_loop.h (working copy)
@@ -44,6 +44,7 @@
class BrowserMainParts;
class BrowserShutdownImpl;
class BrowserThreadImpl;
+class DevicesMonitor;
tommi (sloooow) - chröme 2012/07/30 11:07:04 "devices monitor" doesn't sound right. Even thoug
struct MainFunctionParams;
class ResourceDispatcherHostImpl;
class WebKitThread;
@@ -77,6 +78,7 @@
// Can be called on any thread.
static media::AudioManager* GetAudioManager();
static media_stream::MediaStreamManager* GetMediaStreamManager();
+ static content::DevicesMonitor* GetDevicesMonitor();
tommi (sloooow) - chröme 2012/07/30 11:07:04 Why do we need this getter?
private:
// For ShutdownThreadsAndCleanUp.
@@ -106,6 +108,7 @@
#if defined(OS_WIN)
scoped_ptr<SystemMessageWindowWin> system_message_window_;
#endif
+ scoped_ptr<DevicesMonitor> devices_monitor_;
tommi (sloooow) - chröme 2012/07/30 11:07:04 should this be in an #else? This is for posix wha
// Destroy parts_ before main_message_loop_ (required) and before other
// classes constructed in content (but after main_thread_).
« no previous file with comments | « no previous file | content/browser/browser_main_loop.cc » ('j') | content/browser/browser_main_loop.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698