Index: trunk/src/chrome/browser/profiles/profile.cc |
=================================================================== |
--- trunk/src/chrome/browser/profiles/profile.cc (revision 192508) |
+++ trunk/src/chrome/browser/profiles/profile.cc (working copy) |
@@ -21,7 +21,6 @@ |
#if defined(OS_CHROMEOS) |
#include "base/command_line.h" |
#include "chrome/common/chrome_switches.h" |
-#include "chromeos/chromeos_switches.h" |
#endif |
Profile::Profile() |
@@ -130,8 +129,8 @@ |
bool Profile::IsGuestSession() const { |
#if defined(OS_CHROMEOS) |
- static bool is_guest_session = CommandLine::ForCurrentProcess()->HasSwitch( |
- chromeos::switches::kGuestSession); |
+ static bool is_guest_session = |
+ CommandLine::ForCurrentProcess()->HasSwitch(switches::kGuestSession); |
return is_guest_session; |
#else |
return false; |