| Index: Source/bindings/scripts/v8_utilities.py
|
| diff --git a/Source/bindings/scripts/v8_utilities.py b/Source/bindings/scripts/v8_utilities.py
|
| index 6d16007ed22810fdf4be9f0e2dc8320c1797ad49..e76983fd37e60cc33ebb13615b2d5a517db72f6e 100644
|
| --- a/Source/bindings/scripts/v8_utilities.py
|
| +++ b/Source/bindings/scripts/v8_utilities.py
|
| @@ -118,7 +118,7 @@ IdlType.enum_validation_expression = property(enum_validation_expression)
|
|
|
| def scoped_name(interface, definition, base_name):
|
| if 'ImplementedInPrivateScript' in definition.extended_attributes:
|
| - return '%s::%s' % (v8_class_name(interface), base_name)
|
| + return '%s::PrivateScript::%s' % (v8_class_name(interface), base_name)
|
| # partial interfaces are implemented as separate classes, with their members
|
| # implemented as static member functions
|
| partial_interface_implemented_as = definition.extended_attributes.get('PartialInterfaceImplementedAs')
|
|
|