| Index: chrome/common/secure_origin_whitelist_unittest.cc
|
| diff --git a/chrome/common/secure_origin_whitelist_unittest.cc b/chrome/common/secure_origin_whitelist_unittest.cc
|
| index b685711550048202263efb5bd4c535428daa2d6c..65865ef6dfa83d4ead2cb44687a677acf9a9bcf5 100644
|
| --- a/chrome/common/secure_origin_whitelist_unittest.cc
|
| +++ b/chrome/common/secure_origin_whitelist_unittest.cc
|
| @@ -12,7 +12,7 @@ using content::IsOriginSecure;
|
|
|
| namespace chrome {
|
|
|
| -TEST(SecureOriginWhiteList, UnsafetyTreatInsecureOriginAsSecure) {
|
| +TEST(SecureOriginWhiteList, UnsafelyTreatInsecureOriginAsSecure) {
|
| EXPECT_FALSE(content::IsOriginSecure(GURL("http://example.com/a.html")));
|
| EXPECT_FALSE(
|
| content::IsOriginSecure(GURL("http://127.example.com/a.html")));
|
| @@ -23,7 +23,7 @@ TEST(SecureOriginWhiteList, UnsafetyTreatInsecureOriginAsSecure) {
|
| // ChromeContentClient::AddSecureSchemesAndOrigins)
|
| base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
| command_line->AppendSwitchASCII(
|
| - switches::kUnsafetyTreatInsecureOriginAsSecure,
|
| + switches::kUnsafelyTreatInsecureOriginAsSecure,
|
| "http://example.com,http://127.example.com");
|
| command_line->AppendSwitch(switches::kUserDataDir);
|
| content::ResetSecureSchemesAndOriginsForTesting();
|
|
|