| Index: chrome/browser/chromeos/login/wizard_controller_browsertest.cc
 | 
| diff --git a/chrome/browser/chromeos/login/wizard_controller_browsertest.cc b/chrome/browser/chromeos/login/wizard_controller_browsertest.cc
 | 
| index ed4222fa73226978cbddd803617ec59b75af857f..3ee0699dcab8f04c8fc1395ffdbe88f0598698d3 100644
 | 
| --- a/chrome/browser/chromeos/login/wizard_controller_browsertest.cc
 | 
| +++ b/chrome/browser/chromeos/login/wizard_controller_browsertest.cc
 | 
| @@ -383,16 +383,17 @@ class WizardControllerTestURLFetcherFactory
 | 
|        const GURL& url,
 | 
|        net::URLFetcher::RequestType request_type,
 | 
|        net::URLFetcherDelegate* d) override {
 | 
| -    if (base::StartsWithASCII(
 | 
| +    if (base::StartsWith(
 | 
|              url.spec(),
 | 
|              SimpleGeolocationProvider::DefaultGeolocationProviderURL().spec(),
 | 
| -            true)) {
 | 
| +            base::CompareCase::SENSITIVE)) {
 | 
|        return scoped_ptr<net::URLFetcher>(new net::FakeURLFetcher(
 | 
|            url, d, std::string(kGeolocationResponseBody), net::HTTP_OK,
 | 
|            net::URLRequestStatus::SUCCESS));
 | 
|      }
 | 
| -    if (base::StartsWithASCII(
 | 
| -            url.spec(), chromeos::DefaultTimezoneProviderURL().spec(), true)) {
 | 
| +    if (base::StartsWith(url.spec(),
 | 
| +                         chromeos::DefaultTimezoneProviderURL().spec(),
 | 
| +                         base::CompareCase::SENSITIVE)) {
 | 
|        return scoped_ptr<net::URLFetcher>(new net::FakeURLFetcher(
 | 
|            url, d, std::string(kTimezoneResponseBody), net::HTTP_OK,
 | 
|            net::URLRequestStatus::SUCCESS));
 | 
| 
 |