summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorpneubeck@chromium.org <pneubeck@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-12 09:25:23 +0000
committerpneubeck@chromium.org <pneubeck@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-12 09:25:23 +0000
commitee6ba60fd0a4859d62f2651c39425657d95d1d58 (patch)
treec879fceacac87d5b6bbc6ef47bd5cb74dd17bb35 /net
parent4dec840f200451443c05b233c9d800e17355e65c (diff)
downloadchromium_src-ee6ba60fd0a4859d62f2651c39425657d95d1d58.zip
chromium_src-ee6ba60fd0a4859d62f2651c39425657d95d1d58.tar.gz
chromium_src-ee6ba60fd0a4859d62f2651c39425657d95d1d58.tar.bz2
Remove base::DictionaryValue::HasNext.
BUG=162611 TBR=alexeypa@chromium.org (for remoting/) Review URL: https://chromiumcodereview.appspot.com/13408007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@193888 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r--net/test/local_test_server.cc2
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();