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

Unified Diff: chromeos/network/client_cert_resolver_unittest.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: chromeos/network/client_cert_resolver_unittest.cc
diff --git a/chromeos/network/client_cert_resolver_unittest.cc b/chromeos/network/client_cert_resolver_unittest.cc
index 0fe79c15d3a5ef685d0b8c9fb2e45cf1ff19a665..8caac7a44c1cd4d72d7bb6148270dc3be46bae26 100644
--- a/chromeos/network/client_cert_resolver_unittest.cc
+++ b/chromeos/network/client_cert_resolver_unittest.cc
@@ -172,8 +172,8 @@ class ClientCertResolverTest : public testing::Test,
true /* visible */);
// Set an arbitrary cert id, so that we can check afterwards whether we
// cleared the property or not.
- service_test_->SetServiceProperty(
- kWifiStub, shill::kEapCertIdProperty, base::StringValue("invalid id"));
+ service_test_->SetServiceProperty(kWifiStub, shill::kEapCertIdProperty,
+ base::Value("invalid id"));
profile_test_->AddService(kUserProfilePath, kWifiStub);
DBusThreadManager::Get()
@@ -260,7 +260,7 @@ class ClientCertResolverTest : public testing::Test,
void SetWifiState(const std::string& state) {
ASSERT_TRUE(service_test_->SetServiceProperty(
- kWifiStub, shill::kStateProperty, base::StringValue(state)));
+ kWifiStub, shill::kStateProperty, base::Value(state)));
}
void GetServiceProperty(const std::string& prop_name,
« no previous file with comments | « chromeos/dbus/shill_service_client_unittest.cc ('k') | chromeos/network/host_resolver_impl_chromeos_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698