| 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.
|
|
|