diff options
Diffstat (limited to 'net/test')
-rw-r--r-- | net/test/local_test_server.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/test/local_test_server.cc b/net/test/local_test_server.cc index 5741561..25a792e 100644 --- a/net/test/local_test_server.cc +++ b/net/test/local_test_server.cc @@ -198,7 +198,7 @@ bool LocalTestServer::AddCommandLineArguments(CommandLine* command_line) const { return false; // Serialize the argument dictionary into CommandLine. - for (DictionaryValue::Iterator it(arguments_dict); it.HasNext(); + for (DictionaryValue::Iterator it(arguments_dict); !it.IsAtEnd(); it.Advance()) { const base::Value& value = it.value(); const std::string& key = it.key(); |