Chromium Code Reviews| Index: chrome/browser/chrome_browser_main_linux.h |
| diff --git a/chrome/browser/chrome_browser_main_linux.h b/chrome/browser/chrome_browser_main_linux.h |
| index 4f993778919fc4c5dabee75d77dfd2aaaf80b814..febb9ec5d9f098dfaabb70a0cff2e9466820eef4 100644 |
| --- a/chrome/browser/chrome_browser_main_linux.h |
| +++ b/chrome/browser/chrome_browser_main_linux.h |
| @@ -11,6 +11,11 @@ |
| #include "base/memory/ref_counted.h" |
| #include "chrome/browser/chrome_browser_main_posix.h" |
| +#if defined(OS_CHROMEOS) |
| +#include "chrome/browser/cancelable_request.h" |
|
brettw
2012/08/14 19:42:32
I usually recommend only putting includes in an if
Rick Byers
2012/08/14 20:07:00
Done.
|
| +#include "chrome/browser/chromeos/version_loader.h" |
| +#endif |
| + |
| #if !defined(OS_CHROMEOS) |
| namespace chrome { |
| class MediaDeviceNotificationsLinux; |
| @@ -33,6 +38,11 @@ class ChromeBrowserMainPartsLinux : public ChromeBrowserMainPartsPosix { |
| media_device_notifications_linux_; |
| #endif |
| +#if defined(OS_CHROMEOS) |
| + chromeos::VersionLoader cros_version_loader_; |
| + CancelableRequestConsumer cros_consumer_; |
| +#endif |
| + |
| DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsLinux); |
| }; |