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

Unified Diff: content/browser/browser_main_loop.h

Issue 10824162: add device notification to Mac (Closed) Base URL: svn://svn.chromium.org/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/device_monitor_mac.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/browser_main_loop.h
diff --git a/content/browser/browser_main_loop.h b/content/browser/browser_main_loop.h
index e732d826c67543253a84094495b221fa24020e0a..eb3de50d1b066c22d45939e67dd6a2a03df315f3 100644
--- a/content/browser/browser_main_loop.h
+++ b/content/browser/browser_main_loop.h
@@ -50,6 +50,8 @@ struct MainFunctionParams;
#if defined(OS_LINUX)
class DeviceMonitorLinux;
+#elif defined(OS_MACOSX)
+class DeviceMonitorMac;
#endif
// Implements the main browser loop stages called from BrowserMainRunner.
@@ -111,6 +113,8 @@ class BrowserMainLoop {
scoped_ptr<SystemMessageWindowWin> system_message_window_;
#elif defined(OS_LINUX)
scoped_ptr<DeviceMonitorLinux> device_monitor_linux_;
+#elif defined(OS_MACOSX)
+ scoped_ptr<DeviceMonitorMac> device_monitor_mac_;
#endif
// Destroy parts_ before main_message_loop_ (required) and before other
« no previous file with comments | « no previous file | content/browser/browser_main_loop.cc » ('j') | content/browser/device_monitor_mac.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698