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

Unified Diff: chrome/browser/chrome_browser_main_linux.h

Issue 10827322: Set linux distro to CHROMEOS_RELEASE_DESCRIPTION on ChromeOS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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
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);
};

Powered by Google App Engine
This is Rietveld 408576698