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

Unified Diff: chrome/browser/ui/passwords/password_manager_presenter.cc

Issue 2716583003: Rename Origin.unique() to opaque().
Patch Set: Update new uses post-rebase Created 3 years, 4 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/ui/passwords/password_manager_presenter.cc
diff --git a/chrome/browser/ui/passwords/password_manager_presenter.cc b/chrome/browser/ui/passwords/password_manager_presenter.cc
index 4f4406bbda9a05887666268bdfa7e6418a39f200..bee0efbaf8a3ba6c74fb825c9611012d5077b349 100644
--- a/chrome/browser/ui/passwords/password_manager_presenter.cc
+++ b/chrome/browser/ui/passwords/password_manager_presenter.cc
@@ -112,7 +112,7 @@ std::string CreateSortKey(const autofill::PasswordForm& form,
kSortKeyPartsSeparator + base::UTF16ToUTF8(form.password_value);
key += kSortKeyPartsSeparator;
- if (!form.federation_origin.unique())
+ if (!form.federation_origin.opaque())
key += form.federation_origin.host();
else
key += kSortKeyNoFederationSymbol;

Powered by Google App Engine
This is Rietveld 408576698