| Index: net/tools/fetch/fetch_client.cc
|
| diff --git a/net/tools/fetch/fetch_client.cc b/net/tools/fetch/fetch_client.cc
|
| index 7a3dea7effa3bd80e59bc714f64d7b3bf913c6cb..4c4ac469cd786de41727daaef56b2f61ecc80310 100644
|
| --- a/net/tools/fetch/fetch_client.cc
|
| +++ b/net/tools/fetch/fetch_client.cc
|
| @@ -120,14 +120,14 @@ int main(int argc, char**argv) {
|
|
|
| CommandLine::Init(argc, argv);
|
| const CommandLine& parsed_command_line = *CommandLine::ForCurrentProcess();
|
| - std::string url = WideToASCII(parsed_command_line.GetSwitchValue(L"url"));
|
| + std::string url = WideToASCII(parsed_command_line.GetSwitchValue("url"));
|
| if (!url.length())
|
| usage(argv[0]);
|
| int client_limit = 1;
|
| - if (parsed_command_line.HasSwitch(L"n"))
|
| - StringToInt(WideToASCII(parsed_command_line.GetSwitchValue(L"n")),
|
| + if (parsed_command_line.HasSwitch("n"))
|
| + StringToInt(WideToASCII(parsed_command_line.GetSwitchValue("n")),
|
| &client_limit);
|
| - bool use_cache = parsed_command_line.HasSwitch(L"use-cache");
|
| + bool use_cache = parsed_command_line.HasSwitch("use-cache");
|
|
|
| // Do work here.
|
| MessageLoop loop(MessageLoop::TYPE_IO);
|
| @@ -184,7 +184,7 @@ int main(int argc, char**argv) {
|
| printf("Bandwidth : %.2f%s\n", bps, units);
|
| }
|
|
|
| - if (parsed_command_line.HasSwitch(L"stats")) {
|
| + if (parsed_command_line.HasSwitch("stats")) {
|
| // Dump the stats table.
|
| printf("<stats>\n");
|
| int counter_max = table.GetMaxCounters();
|
|
|