Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(284)

Side by Side Diff: mojo/public/tools/bindings/generators/python_templates/module.py.tmpl

Issue 703273002: Update mojo sdk to rev 04a510fb37db10642e156957f9b2c11c2f6442ac (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix content/child -> mojo/common linking Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 {% from "module_macros.tmpl" import enum_values %} 1 {% from "module_macros.tmpl" import enum_values %}
2 {% from "module_macros.tmpl" import struct_descriptor %} 2 {% from "module_macros.tmpl" import struct_descriptor %}
3 # Copyright 2014 The Chromium Authors. All rights reserved. 3 # Copyright 2014 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 import mojo.bindings.descriptor as _descriptor 7 import mojo.bindings.descriptor as _descriptor
8 import mojo.bindings.reflection as _reflection 8 import mojo.bindings.reflection as _reflection
9 {% if imports %} 9 {% if imports %}
10 10
(...skipping 19 matching lines...) Expand all
30 class {{struct|name}}(object): 30 class {{struct|name}}(object):
31 __metaclass__ = _reflection.MojoStructType 31 __metaclass__ = _reflection.MojoStructType
32 DESCRIPTOR = {{struct_descriptor(struct)|indent(2)}} 32 DESCRIPTOR = {{struct_descriptor(struct)|indent(2)}}
33 {% endfor %} 33 {% endfor %}
34 {% for interface in interfaces %} 34 {% for interface in interfaces %}
35 35
36 class {{interface|name}}(object): 36 class {{interface|name}}(object):
37 __metaclass__ = _reflection.MojoInterfaceType 37 __metaclass__ = _reflection.MojoInterfaceType
38 DESCRIPTOR = { 38 DESCRIPTOR = {
39 {% if interface.client %} 39 {% if interface.client %}
40 'client': {{interface.qualified_client|fully_qualified_name}}, 40 'client': lambda: {{interface.qualified_client|fully_qualified_name}},
41 {% endif %} 41 {% endif %}
42 'methods': [ 42 'methods': [
43 {% for method in interface.methods %} 43 {% for method in interface.methods %}
44 { 44 {
45 'name': '{{method|name}}', 45 'name': '{{method|name}}',
46 'ordinal': {{method.ordinal}}, 46 'ordinal': {{method.ordinal}},
47 {% set request_struct = method|struct_from_method %} 47 {% set request_struct = method|struct_from_method %}
48 'parameters': {{struct_descriptor(request_struct)|indent(8)}}, 48 'parameters': {{struct_descriptor(request_struct)|indent(8)}},
49 {% if method.response_parameters != None %} 49 {% if method.response_parameters != None %}
50 {% set response_struct = method|response_struct_from_method %} 50 {% set response_struct = method|response_struct_from_method %}
51 'responses': {{struct_descriptor(response_struct)|indent(8)}}, 51 'responses': {{struct_descriptor(response_struct)|indent(8)}},
52 {% endif %} 52 {% endif %}
53 }, 53 },
54 {% endfor %} 54 {% endfor %}
55 ], 55 ],
56 } 56 }
57 {% endfor %} 57 {% endfor %}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698