| Index: cloud_print/service/service_state.cc
|
| diff --git a/cloud_print/service/service_state.cc b/cloud_print/service/service_state.cc
|
| index 789d229a0e2591b3f94f35a3d64402026effbdb1..80dbd8ca65f4df19d5dc0e679879d373f6e368f2 100644
|
| --- a/cloud_print/service/service_state.cc
|
| +++ b/cloud_print/service/service_state.cc
|
| @@ -199,7 +199,7 @@ std::string ServiceState::LoginToGoogle(const std::string& service,
|
| std::vector<std::string> lines;
|
| Tokenize(fetcher_delegate.data(), "\r\n", &lines);
|
| for (size_t i = 0; i < lines.size(); ++i) {
|
| - if (StartsWithASCII(lines[i], kAuthStart, false))
|
| + if (base::StartsWithASCII(lines[i], kAuthStart, false))
|
| return lines[i].substr(arraysize(kAuthStart) - 1);
|
| }
|
|
|
|
|