| Index: third_party/WebKit/Source/bindings/templates/interface.cpp.tmpl
|
| diff --git a/third_party/WebKit/Source/bindings/templates/interface.cpp.tmpl b/third_party/WebKit/Source/bindings/templates/interface.cpp.tmpl
|
| index dc5dde35aa16013d8289e401ac118c398c5f19c3..75fceb2e16d6302c285adf3b337b9272bc35ca68 100644
|
| --- a/third_party/WebKit/Source/bindings/templates/interface.cpp.tmpl
|
| +++ b/third_party/WebKit/Source/bindings/templates/interface.cpp.tmpl
|
| @@ -498,7 +498,8 @@ static void {{cpp_class}}OriginSafeMethodSetter(v8::Local<v8::Name> name, v8::Lo
|
| }
|
|
|
| {# The findInstanceInPrototypeChain() call above only returns a non-empty handle if info.Holder() is an Object. #}
|
| - V8HiddenValue::setHiddenValue(ScriptState::current(info.GetIsolate()), v8::Local<v8::Object>::Cast(info.Holder()), name.As<v8::String>(), v8Value);
|
| + V8PrivateProperty::createSymbol(info.GetIsolate(), *attributeName)
|
| + .set(v8::Local<v8::Object>::Cast(info.Holder()), v8Value);
|
| }
|
| {% endif %}
|
| {% endblock %}
|
|
|