Index: third_party/WebKit/Source/bindings/scripts/code_generator_v8.py |
diff --git a/third_party/WebKit/Source/bindings/scripts/code_generator_v8.py b/third_party/WebKit/Source/bindings/scripts/code_generator_v8.py |
index 409c7b6d2c51bc9e9e9c0543b48e3703370cb99a..fa778f4b9b018dd7fd2c391aab0510eb3ee8ac0e 100644 |
--- a/third_party/WebKit/Source/bindings/scripts/code_generator_v8.py |
+++ b/third_party/WebKit/Source/bindings/scripts/code_generator_v8.py |
@@ -356,8 +356,8 @@ class CodeGeneratorCallbackFunction(CodeGeneratorBase): |
template_context['code_generator'] = MODULE_PYNAME |
header_text = header_template.render(template_context) |
cpp_text = cpp_template.render(template_context) |
- header_path = posixpath.join(self.output_dir, 'V8%s.h' % callback_function.name) |
- cpp_path = posixpath.join(self.output_dir, 'V8%s.cpp' % callback_function.name) |
+ header_path = posixpath.join(self.output_dir, '%s.h' % callback_function.name) |
+ cpp_path = posixpath.join(self.output_dir, '%s.cpp' % callback_function.name) |
return ( |
(header_path, header_text), |
(cpp_path, cpp_text), |