| 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 bee64e1547a9f04e26a15f4479e564b44d43b20d..50c595ec4b97dad72d814cde79cb9ea3cf0c0e66 100644
|
| --- a/third_party/WebKit/Source/core/loader/MixedContentCheckerTest.cpp
|
| +++ b/third_party/WebKit/Source/core/loader/MixedContentCheckerTest.cpp
|
| @@ -33,7 +33,7 @@ TEST(MixedContentCheckerTest, IsMixedContent)
|
| {"https://example.com/foo", "ws://google.com/foo", true},
|
| };
|
|
|
| - for (size_t i = 0; i < arraysize(cases); ++i) {
|
| + for (size_t i = 0; i < WTF_ARRAY_LENGTH(cases); ++i) {
|
| const char* origin = cases[i].origin;
|
| const char* target = cases[i].target;
|
| bool expectation = cases[i].expectation;
|
|
|