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

Unified Diff: chrome/browser/chromeos/login/existing_user_controller_browsertest.cc

Issue 2664753002: Remove base::StringValue (Closed)
Patch Set: Rebase Created 3 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: chrome/browser/chromeos/login/existing_user_controller_browsertest.cc
diff --git a/chrome/browser/chromeos/login/existing_user_controller_browsertest.cc b/chrome/browser/chromeos/login/existing_user_controller_browsertest.cc
index 1dd4d53067e34a8b1171f4898cbb3c7100f7b517..9566108f335e2168c4539d03ed31b47dfdbb643b 100644
--- a/chrome/browser/chromeos/login/existing_user_controller_browsertest.cc
+++ b/chrome/browser/chromeos/login/existing_user_controller_browsertest.cc
@@ -200,8 +200,7 @@ class ExistingUserControllerTest : public policy::DevicePolicyCrosBrowserTest {
void RegisterUser(const std::string& user_id) {
ListPrefUpdate users_pref(g_browser_process->local_state(),
"LoggedInUsers");
- users_pref->AppendIfNotPresent(
- base::MakeUnique<base::StringValue>(user_id));
+ users_pref->AppendIfNotPresent(base::MakeUnique<base::Value>(user_id));
}
// ExistingUserController private member accessors.
« no previous file with comments | « chrome/browser/chromeos/file_system_provider/provided_file_system_unittest.cc ('k') | chrome/browser/chromeos/login/helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698