| Index: mojo/public/tools/bindings/pylib/mojom/generate/generator.py
|
| diff --git a/mojo/public/tools/bindings/pylib/mojom/generate/generator.py b/mojo/public/tools/bindings/pylib/mojom/generate/generator.py
|
| index 0ecc615c1849f691d23a591c7e7ebc56bb38dec6..a97d2eac3a5679039dabe914f875915535cffe0b 100644
|
| --- a/mojo/public/tools/bindings/pylib/mojom/generate/generator.py
|
| +++ b/mojo/public/tools/bindings/pylib/mojom/generate/generator.py
|
| @@ -37,12 +37,13 @@ class Generator(object):
|
| # Pass |output_dir| to emit files to disk. Omit |output_dir| to echo all
|
| # files to stdout.
|
| def __init__(self, module, output_dir=None, typemap=None, variant=None,
|
| - bytecode_path=None):
|
| + bytecode_path=None, for_blink=False):
|
| self.module = module
|
| self.output_dir = output_dir
|
| self.typemap = typemap or {}
|
| self.variant = variant
|
| self.bytecode_path = bytecode_path
|
| + self.for_blink = for_blink
|
|
|
| def GetStructsFromMethods(self):
|
| result = []
|
|
|