Index: chrome/browser/chrome_browser_main_linux.cc |
diff --git a/chrome/browser/chrome_browser_main_linux.cc b/chrome/browser/chrome_browser_main_linux.cc |
index 6081681cc40bd175fc40a84051deaaf6dea58b43..870a95c53670669280fffd38d6492facb7d74dff 100644 |
--- a/chrome/browser/chrome_browser_main_linux.cc |
+++ b/chrome/browser/chrome_browser_main_linux.cc |
@@ -24,6 +24,7 @@ |
#include "chrome/browser/chromeos/settings/cros_settings.h" |
#include "chrome/browser/chromeos/settings/cros_settings_names.h" |
#include "chrome/common/chrome_version_info.h" |
+#include "chromeos/chromeos_switches.h" |
#endif |
#endif // defined(USE_LINUX_BREAKPAD) |
@@ -60,8 +61,8 @@ bool IsCrashReportingEnabled(const PrefService* local_state) { |
bool breakpad_enabled = false; |
if (is_chrome_build) { |
#if defined(OS_CHROMEOS) |
- bool is_guest_session = |
- CommandLine::ForCurrentProcess()->HasSwitch(switches::kGuestSession); |
+ bool is_guest_session = CommandLine::ForCurrentProcess()->HasSwitch( |
+ chromeos::switches::kGuestSession); |
bool is_stable_channel = |
chrome::VersionInfo::GetChannel() == |
chrome::VersionInfo::CHANNEL_STABLE; |