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

Unified Diff: chrome/browser/chromeos/accessibility/spoken_feedback_browsertest.cc

Issue 2452983002: ChromeOS: This CL moves chromeos/login/user_names* to user_mananger. (Closed)
Patch Set: Removed unused #includes Created 4 years, 2 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/chromeos/accessibility/spoken_feedback_browsertest.cc
diff --git a/chrome/browser/chromeos/accessibility/spoken_feedback_browsertest.cc b/chrome/browser/chromeos/accessibility/spoken_feedback_browsertest.cc
index e3a1b70da126ddb93afbb3db5c18c9ccb68291cc..d2492038c10bba362f44c262251bc47f03b0557c 100644
--- a/chrome/browser/chromeos/accessibility/spoken_feedback_browsertest.cc
+++ b/chrome/browser/chromeos/accessibility/spoken_feedback_browsertest.cc
@@ -36,8 +36,8 @@
#include "chrome/test/base/testing_profile.h"
#include "chrome/test/base/ui_test_utils.h"
#include "chromeos/chromeos_switches.h"
-#include "chromeos/login/user_names.h"
#include "components/signin/core/account_id/account_id.h"
+#include "components/user_manager/user_names.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/common/url_constants.h"
#include "content/public/test/browser_test_utils.h"
@@ -263,8 +263,8 @@ class SpokenFeedbackTest
command_line->AppendSwitch(::switches::kIncognito);
command_line->AppendSwitchASCII(chromeos::switches::kLoginProfile,
"user");
- command_line->AppendSwitchASCII(switches::kLoginUser,
- login::GuestAccountId().GetUserEmail());
+ command_line->AppendSwitchASCII(
+ switches::kLoginUser, user_manager::GuestAccountId().GetUserEmail());
}
}
};
@@ -635,8 +635,8 @@ class GuestSpokenFeedbackTest : public LoggedInSpokenFeedbackTest {
command_line->AppendSwitch(chromeos::switches::kGuestSession);
command_line->AppendSwitch(::switches::kIncognito);
command_line->AppendSwitchASCII(chromeos::switches::kLoginProfile, "user");
- command_line->AppendSwitchASCII(switches::kLoginUser,
- login::GuestAccountId().GetUserEmail());
+ command_line->AppendSwitchASCII(
+ switches::kLoginUser, user_manager::GuestAccountId().GetUserEmail());
}
private:

Powered by Google App Engine
This is Rietveld 408576698