| Index: third_party/WebKit/Source/core/frame/Frame.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/Frame.cpp b/third_party/WebKit/Source/core/frame/Frame.cpp
|
| index 95a0e4190b5745f3b6fdb81b52b2b1538f49d54c..5bb4290d4781cfaa346b5bfe52fe546bd0ee178a 100644
|
| --- a/third_party/WebKit/Source/core/frame/Frame.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/Frame.cpp
|
| @@ -102,7 +102,7 @@ void Frame::detach(FrameDetachType type)
|
|
|
| void Frame::detachChildren()
|
| {
|
| - typedef WillBeHeapVector<RefPtrWillBeMember<Frame>> FrameVector;
|
| + typedef HeapVector<Member<Frame>> FrameVector;
|
| FrameVector childrenToDetach;
|
| childrenToDetach.reserveCapacity(tree().childCount());
|
| for (Frame* child = tree().firstChild(); child; child = child->tree().nextSibling())
|
| @@ -155,7 +155,7 @@ HTMLFrameOwnerElement* Frame::deprecatedLocalOwner() const
|
|
|
| static ChromeClient& emptyChromeClient()
|
| {
|
| - DEFINE_STATIC_LOCAL(OwnPtrWillBePersistent<EmptyChromeClient>, client, (EmptyChromeClient::create()));
|
| + DEFINE_STATIC_LOCAL(Persistent<EmptyChromeClient>, client, (EmptyChromeClient::create()));
|
| return *client;
|
| }
|
|
|
|
|