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

Unified Diff: chrome/browser/autofill/autofill_manager.cc

Issue 6804032: Add TLS-SRP (RFC 5054) support Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: use system srp and mpi libs, not local copies Created 9 years, 8 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
Index: chrome/browser/autofill/autofill_manager.cc
diff --git a/chrome/browser/autofill/autofill_manager.cc b/chrome/browser/autofill/autofill_manager.cc
index 748b09ab310817d357188b3fea6eef1e30abd512..8f1b91c5e6e6913e8c8bdbf1cabf32067b0f9093 100644
--- a/chrome/browser/autofill/autofill_manager.cc
+++ b/chrome/browser/autofill/autofill_manager.cc
@@ -205,7 +205,8 @@ bool SectionIsAutoFilled(const FormStructure* form_structure,
}
bool FormIsHTTPS(FormStructure* form) {
- return form->source_url().SchemeIs(chrome::kHttpsScheme);
+ return form->source_url().SchemeIs(chrome::kHttpsScheme) ||
+ form->source_url().SchemeIs(chrome::kHttpsvScheme);
}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698