| Index: third_party/WebKit/Source/platform/graphics/ContiguousContainerTest.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/ContiguousContainerTest.cpp b/third_party/WebKit/Source/platform/graphics/ContiguousContainerTest.cpp
|
| index 5afe17d7baf4f033c329f5a4e66f51cd2bce29b1..656218bec359e6cf451826de31b5b1dcf669c5f3 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/ContiguousContainerTest.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/ContiguousContainerTest.cpp
|
| @@ -233,7 +233,7 @@ TEST(ContiguousContainerTest, ForwardIteration)
|
| }
|
| EXPECT_EQ(kNumElements, count);
|
|
|
| - static_assert(WTF::IsSameType<decltype(*list.begin()), Point2D&>::value,
|
| + static_assert(std::is_same<decltype(*list.begin()), Point2D&>::value,
|
| "Non-const iteration should produce non-const references.");
|
| }
|
|
|
| @@ -251,7 +251,7 @@ TEST(ContiguousContainerTest, ConstForwardIteration)
|
| }
|
| EXPECT_EQ(kNumElements, count);
|
|
|
| - static_assert(WTF::IsSameType<decltype(*constList.begin()), const Point2D&>::value,
|
| + static_assert(std::is_same<decltype(*constList.begin()), const Point2D&>::value,
|
| "Const iteration should produce const references.");
|
| }
|
|
|
| @@ -268,7 +268,7 @@ TEST(ContiguousContainerTest, ReverseIteration)
|
| }
|
| EXPECT_EQ(kNumElements, count);
|
|
|
| - static_assert(WTF::IsSameType<decltype(*list.rbegin()), Point2D&>::value,
|
| + static_assert(std::is_same<decltype(*list.rbegin()), Point2D&>::value,
|
| "Non-const iteration should produce non-const references.");
|
| }
|
|
|
|
|