| Index: third_party/WebKit/Source/wtf/ListHashSetTest.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/ListHashSetTest.cpp b/third_party/WebKit/Source/wtf/ListHashSetTest.cpp
|
| index 20d8827e9b3be694b80294195e837795777dad85..f8cb8c6f5d88d264c40ff080af50ab09d1eceb80 100644
|
| --- a/third_party/WebKit/Source/wtf/ListHashSetTest.cpp
|
| +++ b/third_party/WebKit/Source/wtf/ListHashSetTest.cpp
|
| @@ -560,7 +560,7 @@ TEST(ListHashSetTest, WithOwnPtr)
|
| // AddResult in a separate scope to avoid assertion hit,
|
| // since we modify the container further.
|
| OwnPtrSet::AddResult res1 = set.add(adoptPtr(ptr1));
|
| - EXPECT_EQ(res1.storedValue->m_value.get(), ptr1);
|
| + EXPECT_EQ(res1.storedValue->get(), ptr1);
|
| }
|
|
|
| EXPECT_FALSE(deleted1);
|
| @@ -572,7 +572,7 @@ TEST(ListHashSetTest, WithOwnPtr)
|
| Dummy* ptr2 = new Dummy(deleted2);
|
| {
|
| OwnPtrSet::AddResult res2 = set.add(adoptPtr(ptr2));
|
| - EXPECT_EQ(res2.storedValue->m_value.get(), ptr2);
|
| + EXPECT_EQ(res2.storedValue->get(), ptr2);
|
| }
|
|
|
| EXPECT_FALSE(deleted2);
|
|
|