| Index: third_party/WebKit/Source/core/loader/MixedContentCheckerTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/loader/MixedContentCheckerTest.cpp b/third_party/WebKit/Source/core/loader/MixedContentCheckerTest.cpp
|
| index c3341fc4f43f50a8b37815d29379eab0567609ee..c0698b64ca673c26adaf9a525d32da970b66148e 100644
|
| --- a/third_party/WebKit/Source/core/loader/MixedContentCheckerTest.cpp
|
| +++ b/third_party/WebKit/Source/core/loader/MixedContentCheckerTest.cpp
|
| @@ -55,9 +55,9 @@ TEST(MixedContentCheckerTest, IsMixedContent) {
|
| };
|
|
|
| for (const auto& test : cases) {
|
| - SCOPED_TRACE(::testing::Message() << "Origin: " << test.origin
|
| - << ", Target: " << test.target
|
| - << ", Expectation: " << test.expectation);
|
| + SCOPED_TRACE(::testing::Message()
|
| + << "Origin: " << test.origin << ", Target: " << test.target
|
| + << ", Expectation: " << test.expectation);
|
| KURL origin_url(KURL(), test.origin);
|
| RefPtr<SecurityOrigin> security_origin(SecurityOrigin::Create(origin_url));
|
| KURL target_url(KURL(), test.target);
|
|
|