Index: Source/bindings/templates/attributes.cpp |
diff --git a/Source/bindings/templates/attributes.cpp b/Source/bindings/templates/attributes.cpp |
index 36e963f9004ad38d0522dc42b7cc11f0f9e90a87..604751eb8b95f049be463eb773674b4601f346e6 100644 |
--- a/Source/bindings/templates/attributes.cpp |
+++ b/Source/bindings/templates/attributes.cpp |
@@ -341,7 +341,7 @@ v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackI |
{##############################################################################} |
{% macro attribute_getter_implemented_in_private_script(attribute) %} |
-bool {{v8_class}}::{{attribute.name}}AttributeGetterImplementedInPrivateScript(LocalFrame* frame, {{cpp_class}}* holderImpl, {{attribute.cpp_type}}* result) |
+bool {{v8_class}}::PrivateScript::{{attribute.name}}AttributeGetter(LocalFrame* frame, {{cpp_class}}* holderImpl, {{attribute.cpp_type}}* result) |
{ |
if (!frame) |
return false; |
@@ -377,7 +377,7 @@ bool {{v8_class}}::{{attribute.name}}AttributeGetterImplementedInPrivateScript(L |
{% macro attribute_setter_implemented_in_private_script(attribute) %} |
-bool {{v8_class}}::{{attribute.name}}AttributeSetterImplementedInPrivateScript(LocalFrame* frame, {{cpp_class}}* holderImpl, {{attribute.argument_cpp_type}} cppValue) |
+bool {{v8_class}}::PrivateScript::{{attribute.name}}AttributeSetter(LocalFrame* frame, {{cpp_class}}* holderImpl, {{attribute.argument_cpp_type}} cppValue) |
{ |
if (!frame) |
return false; |