| Index: third_party/WebKit/Source/bindings/core/v8/WindowProxy.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/WindowProxy.cpp b/third_party/WebKit/Source/bindings/core/v8/WindowProxy.cpp
|
| index 8752c97c417bd3cd9ffc2b9869719f680b1b545a..ae7f2acf5ef2704e611430f19d38b96308c433da 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/WindowProxy.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/WindowProxy.cpp
|
| @@ -77,9 +77,9 @@ static void checkDocumentWrapper(v8::Local<v8::Object> wrapper, Document* docume
|
| ASSERT(!document->isHTMLDocument() || (V8Document::toImpl(v8::Local<v8::Object>::Cast(wrapper->GetPrototype())) == document));
|
| }
|
|
|
| -PassOwnPtrWillBeRawPtr<WindowProxy> WindowProxy::create(v8::Isolate* isolate, Frame* frame, DOMWrapperWorld& world)
|
| +RawPtr<WindowProxy> WindowProxy::create(v8::Isolate* isolate, Frame* frame, DOMWrapperWorld& world)
|
| {
|
| - return adoptPtrWillBeNoop(new WindowProxy(frame, &world, isolate));
|
| + return (new WindowProxy(frame, &world, isolate));
|
| }
|
|
|
| WindowProxy::WindowProxy(Frame* frame, PassRefPtr<DOMWrapperWorld> world, v8::Isolate* isolate)
|
| @@ -504,7 +504,7 @@ static v8::Local<v8::Value> getNamedProperty(HTMLDocument* htmlDocument, const A
|
| if (!htmlDocument->hasNamedItem(key) && !htmlDocument->hasExtraNamedItem(key))
|
| return v8Undefined();
|
|
|
| - RefPtrWillBeRawPtr<DocumentNameCollection> items = htmlDocument->documentNamedItems(key);
|
| + RawPtr<DocumentNameCollection> items = htmlDocument->documentNamedItems(key);
|
| if (items->isEmpty())
|
| return v8Undefined();
|
|
|
| @@ -516,7 +516,7 @@ static v8::Local<v8::Value> getNamedProperty(HTMLDocument* htmlDocument, const A
|
| return toV8(frame->domWindow(), creationContext, isolate);
|
| return toV8(element, creationContext, isolate);
|
| }
|
| - return toV8(PassRefPtrWillBeRawPtr<HTMLCollection>(items.release()), creationContext, isolate);
|
| + return toV8(RawPtr<HTMLCollection>(items.release()), creationContext, isolate);
|
| }
|
|
|
| static void getter(v8::Local<v8::Name> property, const v8::PropertyCallbackInfo<v8::Value>& info)
|
|
|