| Index: third_party/WebKit/Source/wtf/HashMapTest.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/HashMapTest.cpp b/third_party/WebKit/Source/wtf/HashMapTest.cpp
|
| index 2d47cd8ee860131c105129de99526366cf7c7a71..dec7dd561906834c60d5b302d7919e50f68068f6 100644
|
| --- a/third_party/WebKit/Source/wtf/HashMapTest.cpp
|
| +++ b/third_party/WebKit/Source/wtf/HashMapTest.cpp
|
| @@ -266,14 +266,14 @@ TEST(HashMapTest, AddResultVectorValue) {
|
|
|
| result.storedValue->value.append(11);
|
| EXPECT_EQ(1u, map.find(1)->value.size());
|
| - EXPECT_EQ(11, map.find(1)->value.first());
|
| + EXPECT_EQ(11, map.find(1)->value.front());
|
|
|
| IntVectorMap::AddResult result2 = map.add(1, Vector<int>());
|
| EXPECT_FALSE(result2.isNewEntry);
|
| EXPECT_EQ(1, result.storedValue->key);
|
| EXPECT_EQ(1u, result.storedValue->value.size());
|
| - EXPECT_EQ(11, result.storedValue->value.first());
|
| - EXPECT_EQ(11, map.find(1)->value.first());
|
| + EXPECT_EQ(11, result.storedValue->value.front());
|
| + EXPECT_EQ(11, map.find(1)->value.front());
|
| }
|
|
|
| class InstanceCounter {
|
|
|