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

Unified Diff: chrome/browser/chromeos/net/network_state_notifier_unittest.cc

Issue 2666093002: Remove base::FundamentalValue (Closed)
Patch Set: Rebase Created 3 years, 10 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 82c03fac181f4662535b47fcbbafcd229adb9c3b..e2950cede3b23fc02cbc6f8c5ef2146e774826b5 100644
--- a/chrome/browser/chromeos/net/network_state_notifier_unittest.cc
+++ b/chrome/browser/chromeos/net/network_state_notifier_unittest.cc
@@ -104,9 +104,8 @@ class NetworkStateNotifierTest : public testing::Test {
service_test->SetServiceProperty(kWiFi1ServicePath,
shill::kSecurityClassProperty,
base::StringValue(shill::kSecurityWep));
- service_test->SetServiceProperty(kWiFi1ServicePath,
- shill::kConnectableProperty,
- base::FundamentalValue(true));
+ service_test->SetServiceProperty(
+ kWiFi1ServicePath, shill::kConnectableProperty, base::Value(true));
service_test->SetServiceProperty(kWiFi1ServicePath,
shill::kPassphraseProperty,
base::StringValue("failure"));

Powered by Google App Engine
This is Rietveld 408576698