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

Unified Diff: components/password_manager/core/browser/psl_matching_helper_unittest.cc

Issue 508143002: Remove Finch kill switch for PSL matching (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Renamed histogram constant from DISABLED to NOT_USED Created 6 years, 3 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: components/password_manager/core/browser/psl_matching_helper_unittest.cc
diff --git a/components/password_manager/core/browser/psl_matching_helper_unittest.cc b/components/password_manager/core/browser/psl_matching_helper_unittest.cc
index 4f282a3e1ad277a404517e4381687986bd8e6bb8..fdc4708c7c5b19b3da339fd08811a0af8531a12c 100644
--- a/components/password_manager/core/browser/psl_matching_helper_unittest.cc
+++ b/components/password_manager/core/browser/psl_matching_helper_unittest.cc
@@ -48,8 +48,7 @@ TEST(PSLMatchingUtilsTest, IsPublicSuffixDomainMatch) {
autofill::PasswordForm form2;
form2.signon_realm = pairs[i].url2;
EXPECT_EQ(pairs[i].should_match,
- PSLMatchingHelper::IsPublicSuffixDomainMatch(form1.signon_realm,
- form2.signon_realm))
+ IsPublicSuffixDomainMatch(form1.signon_realm, form2.signon_realm))
<< "First URL = " << pairs[i].url1
<< ", second URL = " << pairs[i].url2;
}
« no previous file with comments | « components/password_manager/core/browser/psl_matching_helper.cc ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698