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

Side by Side Diff: sky/engine/build/scripts/templates/ElementWrapperFactory.cpp.tmpl

Issue 1206763002: Really remove config.h (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 5 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
OLDNEW
1 {% from "macros.tmpl" import license %} 1 {% from "macros.tmpl" import license %}
2 {{ license() }} 2 {{ license() }}
3 3
4 #include "config.h"
5 #include "V8{{namespace}}ElementWrapperFactory.h" 4 #include "V8{{namespace}}ElementWrapperFactory.h"
6 5
7 #include "{{namespace}}Names.h" 6 #include "{{namespace}}Names.h"
8 #include "bindings/core/v8/CustomElementWrapper.h" 7 #include "bindings/core/v8/CustomElementWrapper.h"
9 {% for tag in tags|sort if tag.has_js_interface %} 8 {% for tag in tags|sort if tag.has_js_interface %}
10 #include "bindings/core/v8/V8{{tag.interface}}.h" 9 #include "bindings/core/v8/V8{{tag.interface}}.h"
11 {% endfor %} 10 {% endfor %}
12 {% for tag in tags|sort if tag.has_js_interface %} 11 {% for tag in tags|sort if tag.has_js_interface %}
13 #include "core/{{namespace|lower}}/{{tag.js_interface}}.h" 12 #include "core/{{namespace|lower}}/{{tag.js_interface}}.h"
14 {% endfor %} 13 {% endfor %}
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 {% endfor %} 82 {% endfor %}
84 } 83 }
85 84
86 if (const WrapperTypeInfo* result = map.get(name.impl())) 85 if (const WrapperTypeInfo* result = map.get(name.impl()))
87 return result; 86 return result;
88 87
89 return &V8{{fallback_js_interface}}::wrapperTypeInfo; 88 return &V8{{fallback_js_interface}}::wrapperTypeInfo;
90 } 89 }
91 90
92 } 91 }
OLDNEW
« no previous file with comments | « sky/engine/build/scripts/templates/ElementLookupTrie.cpp.tmpl ('k') | sky/engine/build/scripts/templates/MakeNames.cpp.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698