| Index: net/tools/hresolv/hresolv.cc
|
| diff --git a/net/tools/hresolv/hresolv.cc b/net/tools/hresolv/hresolv.cc
|
| index c5c1976c52de6c9f32e987f6989ebb1f285406e7..b5af4ae439e6d18641c78979dac164662c0def1c 100644
|
| --- a/net/tools/hresolv/hresolv.cc
|
| +++ b/net/tools/hresolv/hresolv.cc
|
| @@ -382,7 +382,7 @@ bool ReadHostsAndTimesFromFile(const FilePath& path,
|
| std::vector<std::string> lines;
|
| // TODO(cbentzel): This should probably handle CRLF-style separators as well.
|
| // Maybe it's worth adding functionality like this to base tools.
|
| - SplitString(file_contents, '\n', &lines);
|
| + base::SplitString(file_contents, '\n', &lines);
|
| std::vector<std::string>::const_iterator line_end = lines.end();
|
| int previous_timestamp = 0;
|
| for (std::vector<std::string>::const_iterator it = lines.begin();
|
|
|