Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(460)

Unified Diff: shell/application_manager/application_manager.cc

Issue 1641513004: Update //base to chromium 9659b08ea5a34f889dc4166217f438095ddc10d2 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « shell/android/url_response_disk_cache_delegate_impl.cc ('k') | shell/context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « shell/android/url_response_disk_cache_delegate_impl.cc ('k') | shell/context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698