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

Unified Diff: ios/chrome/browser/passwords/credential_manager.mm

Issue 2425543002: Removed use of IsRunningOnIOS8OrLater (Closed)
Patch Set: Created 4 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/passwords/credential_manager.mm
diff --git a/ios/chrome/browser/passwords/credential_manager.mm b/ios/chrome/browser/passwords/credential_manager.mm
index 3d7b992f909e00ecdb6dafd4522779d58db6226b..c6af7810dcd2f62dd97f2becf60fd80e7f5aaf24 100644
--- a/ios/chrome/browser/passwords/credential_manager.mm
+++ b/ios/chrome/browser/passwords/credential_manager.mm
@@ -100,8 +100,7 @@ void CredentialManager::PageLoaded(
web::URLVerificationTrustLevel trust_level =
web::URLVerificationTrustLevel::kNone;
const GURL page_url(web_state()->GetCurrentURL(&trust_level));
- if (!base::ios::IsRunningOnIOS8OrLater() ||
- trust_level != web::URLVerificationTrustLevel::kAbsolute ||
+ if (trust_level != web::URLVerificationTrustLevel::kAbsolute ||
!web::UrlHasWebScheme(page_url) || !web_state()->ContentIsHTML()) {
return;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698