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

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

Issue 2716583003: Rename Origin.unique() to opaque().
Patch Set: Mac fixes Created 3 years, 10 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 f2c2893a39e4036b0b46c0d567c9ee073d648b5a..d32fbd9ed44d7d2374fa6268e7bdbc258405a3b1 100644
--- a/chrome/browser/ui/passwords/password_manager_presenter.cc
+++ b/chrome/browser/ui/passwords/password_manager_presenter.cc
@@ -97,7 +97,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