Commit ae17a690 authored by Erik Anderson's avatar Erik Anderson Committed by Commit Bot

Refresh Public Suffix List to the latest version.

This updates from revision
7922d7c20e246552be418e8f72e577899fd30d99 (2020-02-18)

to revision
bd6f96933d74ad35820533cc991b4110e6e40199 (2020-08-28)

Bug: 1123982
Change-Id: Iabf283b8a6eb02468124e5640447dd8f63388c12
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2387485
Auto-Submit: Erik Anderson <Erik.Anderson@microsoft.com>
Commit-Queue: Jan Wilken Dörrie <jdoerrie@chromium.org>
Reviewed-by: default avatarJan Wilken Dörrie <jdoerrie@chromium.org>
Reviewed-by: default avatarRyan Sleevi <rsleevi@chromium.org>
Cr-Commit-Position: refs/heads/master@{#803800}
parent 0ac6556f
...@@ -20,7 +20,7 @@ namespace { ...@@ -20,7 +20,7 @@ namespace {
constexpr char kMockResponse[] = R"({ constexpr char kMockResponse[] = R"({
"google.com": "https://google.com/change-password", "google.com": "https://google.com/change-password",
"a.netlify.com": "https://a.netlify.com/change-password", "a.blogspot.com": "https://a.blogspot.com/change-password",
"web.app": "https://web.app/change-password" "web.app": "https://web.app/change-password"
})"; })";
} // namespace } // namespace
...@@ -94,10 +94,10 @@ TEST_F(ChangePasswordUrlServiceTest, eTLDLookup) { ...@@ -94,10 +94,10 @@ TEST_F(ChangePasswordUrlServiceTest, eTLDLookup) {
EXPECT_EQ(GetChangePasswordUrl(GURL("https://web.app")), GURL()); EXPECT_EQ(GetChangePasswordUrl(GURL("https://web.app")), GURL());
EXPECT_EQ(GetChangePasswordUrl(GURL("https://netlify.com")), GURL()); EXPECT_EQ(GetChangePasswordUrl(GURL("https://blogspot.com")), GURL());
EXPECT_EQ(GetChangePasswordUrl(GURL("https://a.netlify.com")), EXPECT_EQ(GetChangePasswordUrl(GURL("https://a.blogspot.com")),
GURL("https://a.netlify.com/change-password")); GURL("https://a.blogspot.com/change-password"));
EXPECT_EQ(GetChangePasswordUrl(GURL("https://b.netlify.com")), GURL()); EXPECT_EQ(GetChangePasswordUrl(GURL("https://b.blogspot.com")), GURL());
EXPECT_EQ(GetChangePasswordUrl(GURL("https://notlisted.com/foo")), GURL()); EXPECT_EQ(GetChangePasswordUrl(GURL("https://notlisted.com/foo")), GURL());
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment