| Index: third_party/WebKit/Source/bindings/templates/interface_base.cpp.tmpl
|
| diff --git a/third_party/WebKit/Source/bindings/templates/interface_base.cpp.tmpl b/third_party/WebKit/Source/bindings/templates/interface_base.cpp.tmpl
|
| index 0d0bab2c97359e0a8705c8af2a232ddb39abc53a..ac9fa3021d763798c61b177fd6068fbb2fba013d 100644
|
| --- a/third_party/WebKit/Source/bindings/templates/interface_base.cpp.tmpl
|
| +++ b/third_party/WebKit/Source/bindings/templates/interface_base.cpp.tmpl
|
| @@ -273,7 +273,8 @@ void {{v8_class_or_partial}}::crossOriginNamedGetter(v8::Local<v8::Name> name, c
|
| {% else %}
|
| BindingSecurity::FailedAccessCheckFor(
|
| info.GetIsolate(),
|
| - {{v8_class}}::toImpl(info.Holder())->GetFrame());
|
| + &{{v8_class}}::wrapperTypeInfo,
|
| + info.Holder());
|
| {% endif %}
|
| }
|
| {% endif %}
|
| @@ -297,7 +298,8 @@ void {{v8_class_or_partial}}::crossOriginNamedSetter(v8::Local<v8::Name> name, v
|
|
|
| BindingSecurity::FailedAccessCheckFor(
|
| info.GetIsolate(),
|
| - {{v8_class}}::toImpl(info.Holder())->GetFrame());
|
| + &{{v8_class}}::wrapperTypeInfo,
|
| + info.Holder());
|
| }
|
| {% endif %}
|
|
|
|
|