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

Side by Side Diff: third_party/WebKit/Source/bindings/templates/utilities.cpp

Issue 1550393002: Rename conversions.cpp to utilities.cpp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months 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
« no previous file with comments | « third_party/WebKit/Source/bindings/templates/union.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 {% macro v8_value_to_local_cpp_value(thing) %} 1 {% macro v8_value_to_local_cpp_value(thing) %}
2 {# This indirection is just to avoid spurious white-space lines. #} 2 {# This indirection is just to avoid spurious white-space lines. #}
3 {{generate_v8_value_to_local_cpp_value(thing) | trim}} 3 {{generate_v8_value_to_local_cpp_value(thing) | trim}}
4 {%- endmacro %} 4 {%- endmacro %}
5 5
6 6
7 {% macro generate_v8_value_to_local_cpp_value(thing) %} 7 {% macro generate_v8_value_to_local_cpp_value(thing) %}
8 {% set item = thing.v8_value_to_local_cpp_value or thing %} 8 {% set item = thing.v8_value_to_local_cpp_value or thing %}
9 {% if item.error_message %} 9 {% if item.error_message %}
10 /* {{item.error_message}} */ 10 /* {{item.error_message}} */
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 {% set property_location_list = property_location_list + ['V8DOMConfiguration::O nInstance'] %} 46 {% set property_location_list = property_location_list + ['V8DOMConfiguration::O nInstance'] %}
47 {% endif %} 47 {% endif %}
48 {% if member.on_prototype %} 48 {% if member.on_prototype %}
49 {% set property_location_list = property_location_list + ['V8DOMConfiguration::O nPrototype'] %} 49 {% set property_location_list = property_location_list + ['V8DOMConfiguration::O nPrototype'] %}
50 {% endif %} 50 {% endif %}
51 {% if member.on_interface %} 51 {% if member.on_interface %}
52 {% set property_location_list = property_location_list + ['V8DOMConfiguration::O nInterface'] %} 52 {% set property_location_list = property_location_list + ['V8DOMConfiguration::O nInterface'] %}
53 {% endif %} 53 {% endif %}
54 {{property_location_list | join(' | ')}} 54 {{property_location_list | join(' | ')}}
55 {%- endmacro %} 55 {%- endmacro %}
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/bindings/templates/union.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698