Index: third_party/WebKit/Source/bindings/core/v8/custom/V8WindowCustom.cpp |
diff --git a/third_party/WebKit/Source/bindings/core/v8/custom/V8WindowCustom.cpp b/third_party/WebKit/Source/bindings/core/v8/custom/V8WindowCustom.cpp |
index aa154d2a01ecd5b9331360cb18f7708ef3df1f22..c43dfb21dc8d6e78a7c3211fa1152c560ddebf6f 100644 |
--- a/third_party/WebKit/Source/bindings/core/v8/custom/V8WindowCustom.cpp |
+++ b/third_party/WebKit/Source/bindings/core/v8/custom/V8WindowCustom.cpp |
@@ -192,7 +192,7 @@ void V8Window::postMessageMethodCustom(const v8::FunctionCallbackInfo<v8::Value> |
// postMessage(message, targetOrigin, {sequence of transferrables}) |
// Legacy non-standard implementations in webkit allowed: |
// postMessage(message, {sequence of transferrables}, targetOrigin); |
- OwnPtrWillBeRawPtr<MessagePortArray> portArray = adoptPtrWillBeNoop(new MessagePortArray); |
+ RawPtr<MessagePortArray> portArray = adoptPtrWillBeNoop(new MessagePortArray); |
ArrayBufferArray arrayBufferArray; |
ImageBitmapArray imageBitmapArray; |
int targetOriginArgIndex = 1; |
@@ -239,7 +239,7 @@ void V8Window::openMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) |
// |impl| has to be a LocalDOMWindow, since RemoteDOMWindows wouldn't have |
// passed the BindingSecurity check above. |
- RefPtrWillBeRawPtr<DOMWindow> openedWindow = toLocalDOMWindow(impl)->open(urlString, frameName, windowFeaturesString, callingDOMWindow(info.GetIsolate()), enteredDOMWindow(info.GetIsolate())); |
+ RawPtr<DOMWindow> openedWindow = toLocalDOMWindow(impl)->open(urlString, frameName, windowFeaturesString, callingDOMWindow(info.GetIsolate()), enteredDOMWindow(info.GetIsolate())); |
if (!openedWindow) |
return; |
@@ -371,7 +371,7 @@ void V8Window::namedPropertyGetterCustom(v8::Local<v8::Name> name, const v8::Pro |
return; |
} |
- RefPtrWillBeRawPtr<HTMLCollection> items = doc->windowNamedItems(propName); |
+ RawPtr<HTMLCollection> items = doc->windowNamedItems(propName); |
if (!items->isEmpty()) { |
// TODO(esprehn): Firefox doesn't return an HTMLCollection here if there's |
// multiple with the same name, but Chrome and Safari does. What's the |