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

Unified Diff: trunk/src/chrome/browser/profiles/profile.cc

Issue 13590004: Revert 192504 "Re-apply 192420: Move login switches to src/chromeos" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 9 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: 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;

Powered by Google App Engine
This is Rietveld 408576698