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

Unified Diff: chrome/browser/chromeos/proxy_config_service_impl_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/proxy_config_service_impl_unittest.cc
diff --git a/chrome/browser/chromeos/proxy_config_service_impl_unittest.cc b/chrome/browser/chromeos/proxy_config_service_impl_unittest.cc
index 84e06321ab05d0c1de3cd4116195c7b277a67a0b..71530e96915c353b25cb790e1ad7b88fe3503eb6 100644
--- a/chrome/browser/chromeos/proxy_config_service_impl_unittest.cc
+++ b/chrome/browser/chromeos/proxy_config_service_impl_unittest.cc
@@ -350,10 +350,11 @@ class ProxyConfigServiceImplTest : public testing::Test {
NetworkHandler::Get()->network_state_handler();
const NetworkState* network = network_state_handler->DefaultNetwork();
ASSERT_TRUE(network);
- DBusThreadManager::Get()->GetShillServiceClient()->GetTestInterface()->
- SetServiceProperty(network->path(),
- shill::kProxyConfigProperty,
- base::StringValue(proxy_config));
+ DBusThreadManager::Get()
+ ->GetShillServiceClient()
+ ->GetTestInterface()
+ ->SetServiceProperty(network->path(), shill::kProxyConfigProperty,
+ base::Value(proxy_config));
}
// Synchronously gets the latest proxy config.
« no previous file with comments | « chrome/browser/chromeos/preferences_unittest.cc ('k') | chrome/browser/chromeos/proxy_cros_settings_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698