diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-31 17:29:25 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-31 17:29:25 +0000 |
commit | e83326f8400791e92875546b2fd1885a3a17d1b1 (patch) | |
tree | edbe773208b1a9f6965b45b55da10afd210ea7bb /net/tools/fetch | |
parent | 8e0a03bf3b1aacaa7a2bc2561d8eb1b83eb9c2e5 (diff) | |
download | chromium_src-e83326f8400791e92875546b2fd1885a3a17d1b1.zip chromium_src-e83326f8400791e92875546b2fd1885a3a17d1b1.tar.gz chromium_src-e83326f8400791e92875546b2fd1885a3a17d1b1.tar.bz2 |
Convert more callers of the integer/string functions to using
string_number_conversions.h
TEST=it compiles
BUG=none
Review URL: http://codereview.chromium.org/3013046
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54454 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/tools/fetch')
-rw-r--r-- | net/tools/fetch/fetch_client.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/net/tools/fetch/fetch_client.cc b/net/tools/fetch/fetch_client.cc index 8863dd7..15d6e16 100644 --- a/net/tools/fetch/fetch_client.cc +++ b/net/tools/fetch/fetch_client.cc @@ -9,6 +9,7 @@ #include "base/message_loop.h" #include "base/singleton.h" #include "base/stats_counters.h" +#include "base/string_number_conversions.h" #include "base/string_util.h" #include "net/base/completion_callback.h" #include "net/base/host_resolver.h" @@ -125,8 +126,10 @@ int main(int argc, char**argv) { if (!url.length()) usage(argv[0]); int client_limit = 1; - if (parsed_command_line.HasSwitch("n")) - StringToInt(parsed_command_line.GetSwitchValueASCII("n"), &client_limit); + if (parsed_command_line.HasSwitch("n")) { + base::StringToInt(parsed_command_line.GetSwitchValueASCII("n"), + &client_limit); + } bool use_cache = parsed_command_line.HasSwitch("use-cache"); // Do work here. |