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

Unified Diff: chrome/browser/chromeos/net/network_state_notifier_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: chrome/browser/chromeos/net/network_state_notifier_unittest.cc
diff --git a/chrome/browser/chromeos/net/network_state_notifier_unittest.cc b/chrome/browser/chromeos/net/network_state_notifier_unittest.cc
index e2950cede3b23fc02cbc6f8c5ef2146e774826b5..3b9bfb387afdc4ea08e36398eccf2befbf489e38 100644
--- a/chrome/browser/chromeos/net/network_state_notifier_unittest.cc
+++ b/chrome/browser/chromeos/net/network_state_notifier_unittest.cc
@@ -103,12 +103,11 @@ class NetworkStateNotifierTest : public testing::Test {
add_to_visible);
service_test->SetServiceProperty(kWiFi1ServicePath,
shill::kSecurityClassProperty,
- base::StringValue(shill::kSecurityWep));
+ base::Value(shill::kSecurityWep));
service_test->SetServiceProperty(
kWiFi1ServicePath, shill::kConnectableProperty, base::Value(true));
- service_test->SetServiceProperty(kWiFi1ServicePath,
- shill::kPassphraseProperty,
- base::StringValue("failure"));
+ service_test->SetServiceProperty(
+ kWiFi1ServicePath, shill::kPassphraseProperty, base::Value("failure"));
base::RunLoop().RunUntilIdle();
}

Powered by Google App Engine
This is Rietveld 408576698