| Index: mojo/public/bindings/generators/mojom_cpp_generator.py
|
| diff --git a/mojo/public/bindings/generators/mojom_cpp_generator.py b/mojo/public/bindings/generators/mojom_cpp_generator.py
|
| index e5c764e08ba645ee41a4a64b3709157fba898b65..f807f0f11bfcfcd7f6be02c82e58202c090c34bc 100644
|
| --- a/mojo/public/bindings/generators/mojom_cpp_generator.py
|
| +++ b/mojo/public/bindings/generators/mojom_cpp_generator.py
|
| @@ -311,7 +311,8 @@ class CPPGenerator(object):
|
| (method.name, ", ".join(params), method_postfix))
|
| return template.substitute(
|
| CLASS=interface.name,
|
| - METHODS='.\n'.join(methods))
|
| + PEER=interface.peer,
|
| + METHODS='\n'.join(methods))
|
|
|
| def GetInterfaceClassDeclarations(self):
|
| template = self.GetTemplate("interface_declaration")
|
|
|