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

Unified Diff: chrome/browser/ui/webui/options/chromeos/accounts_options_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/ui/webui/options/chromeos/accounts_options_browsertest.cc
diff --git a/chrome/browser/ui/webui/options/chromeos/accounts_options_browsertest.cc b/chrome/browser/ui/webui/options/chromeos/accounts_options_browsertest.cc
index d03da55880f4da8e9f8fe1740e25feb5ba10b781..34ea81b1cedd66de5414eac6834c168b4f8f152d 100644
--- a/chrome/browser/ui/webui/options/chromeos/accounts_options_browsertest.cc
+++ b/chrome/browser/ui/webui/options/chromeos/accounts_options_browsertest.cc
@@ -44,8 +44,7 @@ class AccountsOptionsTest : public LoginManagerTest {
stub_settings_provider_(base::MakeUnique<StubCrosSettingsProvider>()),
stub_settings_provider_ptr_(static_cast<StubCrosSettingsProvider*>(
stub_settings_provider_.get())) {
- stub_settings_provider_->Set(kDeviceOwner,
- base::StringValue(kTestUsers[0]));
+ stub_settings_provider_->Set(kDeviceOwner, base::Value(kTestUsers[0]));
for (size_t i = 0; i < arraysize(kTestUsers); ++i) {
test_users_.push_back(AccountId::FromUserEmail(kTestUsers[i]));
}

Powered by Google App Engine
This is Rietveld 408576698