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 d8b33f8cdb781197031420fc1bfa674ae5b29f2f..5763bb2cb79ec072ee7d2f75ec230a9fd2440e59 100644 |
--- a/third_party/WebKit/Source/platform/graphics/ContiguousContainerTest.cpp |
+++ b/third_party/WebKit/Source/platform/graphics/ContiguousContainerTest.cpp |
@@ -234,7 +234,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."); |
} |
@@ -252,7 +252,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."); |
} |
@@ -269,7 +269,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."); |
} |