Index: shell/application_manager/application_manager.cc |
diff --git a/shell/application_manager/application_manager.cc b/shell/application_manager/application_manager.cc |
index 77d657d1b95f7d14572357265fc44c4cef86600e..b4f8876df8ee78e9f2492ab83815af1c6ee7aac6 100644 |
--- a/shell/application_manager/application_manager.cc |
+++ b/shell/application_manager/application_manager.cc |
@@ -210,9 +210,11 @@ void ApplicationManager::ConnectToApplicationWithParameters( |
// connecting to those apps would result in a recursive loop, so it has to be |
// explicitly avoided here. What this means in practice is that these apps |
// cannot themselves require authentication to obtain. |
- if (EndsWith(resolved_url.path(), "/authentication.mojo", true) || |
- EndsWith(resolved_url.path(), |
- "/authenticating_url_loader_interceptor.mojo", true)) { |
+ if (base::EndsWith(resolved_url.path(), "/authentication.mojo", |
+ base::CompareCase::SENSITIVE) || |
+ base::EndsWith(resolved_url.path(), |
+ "/authenticating_url_loader_interceptor.mojo", |
+ base::CompareCase::SENSITIVE)) { |
network_service = network_service_.get(); |
} else if (!initialized_authentication_interceptor_) { |
#ifndef NO_AUTHENTICATION |