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

Unified Diff: chrome/browser/password_manager/password_store_mac.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/password_manager/password_store_mac.cc
diff --git a/chrome/browser/password_manager/password_store_mac.cc b/chrome/browser/password_manager/password_store_mac.cc
index abdb9c73032b1aaf299c5d9cd9695c9d8e254149..5f2b71c049610405abb2a4df097696e432222512 100644
--- a/chrome/browser/password_manager/password_store_mac.cc
+++ b/chrome/browser/password_manager/password_store_mac.cc
@@ -175,7 +175,7 @@ namespace internal_keychain_helpers {
GURL URLFromComponents(bool is_secure, const std::string& host, int port,
const std::string& path) {
GURL::Replacements url_components;
- std::string scheme(is_secure ? "https" : "http");
+ std::string scheme(is_secure ? "https" : "http"); // TODO(sqs): add httpsv
url_components.SetSchemeStr(scheme);
url_components.SetHostStr(host);
std::string port_string; // Must remain in scope until after we do replacing.

Powered by Google App Engine
This is Rietveld 408576698