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

Unified Diff: chromeos/network/network_configuration_handler_unittest.cc

Issue 708563005: Use setProperties for IP Config. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_430113_internet_options_1
Patch Set: Fix win/mac test expectations Created 5 years, 11 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/network_configuration_handler_unittest.cc
diff --git a/chromeos/network/network_configuration_handler_unittest.cc b/chromeos/network/network_configuration_handler_unittest.cc
index f92e85a7f842316e5c96cd5ebe6497a8c8727443..89cdbd31bddaa0dc78dd5cd76939dcde1a40c623 100644
--- a/chromeos/network/network_configuration_handler_unittest.cc
+++ b/chromeos/network/network_configuration_handler_unittest.cc
@@ -198,7 +198,8 @@ class NetworkConfigurationHandlerTest : public testing::Test {
network_state_handler_.reset(NetworkStateHandler::InitializeForTest());
network_configuration_handler_.reset(new NetworkConfigurationHandler());
- network_configuration_handler_->Init(network_state_handler_.get());
+ network_configuration_handler_->Init(network_state_handler_.get(),
+ NULL /* network_device_handler */);
message_loop_.RunUntilIdle();
}
@@ -490,7 +491,8 @@ class NetworkConfigurationHandlerStubTest : public testing::Test {
network_state_handler_->AddObserver(test_observer_.get(), FROM_HERE);
network_configuration_handler_.reset(new NetworkConfigurationHandler());
- network_configuration_handler_->Init(network_state_handler_.get());
+ network_configuration_handler_->Init(network_state_handler_.get(),
+ NULL /* network_device_handler */);
message_loop_.RunUntilIdle();
test_observer_->ClearPropertyUpdates();
« no previous file with comments | « chromeos/network/network_configuration_handler.cc ('k') | chromeos/network/network_connection_handler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698