| Index: third_party/WebKit/Source/bindings/core/v8/V8PagePopupControllerBinding.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/V8PagePopupControllerBinding.cpp b/third_party/WebKit/Source/bindings/core/v8/V8PagePopupControllerBinding.cpp
|
| index ef310eff27f50a1f0fc070a3e54c2a74bc03fbca..957164141e68aed3ce72ba4a407b649f0919037e 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/V8PagePopupControllerBinding.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/V8PagePopupControllerBinding.cpp
|
| @@ -21,8 +21,8 @@ void pagePopupControllerAttributeGetter(const v8::PropertyCallbackInfo<v8::Value
|
| {
|
| v8::Local<v8::Object> holder = info.Holder();
|
| DOMWindow* impl = V8Window::toImpl(holder);
|
| - RawPtr<PagePopupController> cppValue(PagePopupSupplement::pagePopupController(*toLocalDOMWindow(impl)->frame()));
|
| - v8SetReturnValue(info, toV8(cppValue.get(), holder, info.GetIsolate()));
|
| + PagePopupController* cppValue = PagePopupSupplement::pagePopupController(*toLocalDOMWindow(impl)->frame());
|
| + v8SetReturnValue(info, toV8(cppValue, holder, info.GetIsolate()));
|
| }
|
|
|
| void pagePopupControllerAttributeGetterCallback(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>& info)
|
|
|