Chromium Code Reviews| 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,9 @@ |
| class BrowserMainParts; |
| class BrowserShutdownImpl; |
| class BrowserThreadImpl; |
| +#if defined(OS_LINUX) |
|
jam
2012/07/31 15:46:05
nit: can you move this after the class/struct sect
wjia(left Chromium)
2012/07/31 18:19:08
Done.
|
| +class DeviceMonitorLinux; |
| +#endif |
| struct MainFunctionParams; |
| class ResourceDispatcherHostImpl; |
| class WebKitThread; |
| @@ -105,6 +108,8 @@ |
| scoped_ptr<BrowserOnlineStateObserver> online_state_observer_; |
| #if defined(OS_WIN) |
| scoped_ptr<SystemMessageWindowWin> system_message_window_; |
| +#elif defined(OS_LINUX) |
| + scoped_ptr<DeviceMonitorLinux> device_monitor_linux_; |
| #endif |
| // Destroy parts_ before main_message_loop_ (required) and before other |