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

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

Issue 351423002: Moved files under Source/bindings/v8 to Source/bindings/core/v8. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/bindings/v8/v8.gypi ('k') | Source/core/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 {% from "macros.tmpl" import license %} 1 {% from "macros.tmpl" import license %}
2 {{ license() }} 2 {{ license() }}
3 3
4 #include "config.h" 4 #include "config.h"
5 #include "V8{{namespace}}ElementWrapperFactory.h" 5 #include "V8{{namespace}}ElementWrapperFactory.h"
6 6
7 #include "{{namespace}}Names.h" 7 #include "{{namespace}}Names.h"
8 #include "bindings/v8/CustomElementWrapper.h" 8 #include "bindings/core/v8/CustomElementWrapper.h"
9 {% for tag in tags|sort if tag.has_js_interface %} 9 {% for tag in tags|sort if tag.has_js_interface %}
10 #include "bindings/core/v8/V8{{tag.interface}}.h" 10 #include "bindings/core/v8/V8{{tag.interface}}.h"
11 {% endfor %} 11 {% endfor %}
12 {% for tag in tags|sort if tag.has_js_interface %} 12 {% for tag in tags|sort if tag.has_js_interface %}
13 #include "core/{{namespace|lower}}/{{tag.js_interface}}.h" 13 #include "core/{{namespace|lower}}/{{tag.js_interface}}.h"
14 {% endfor %} 14 {% endfor %}
15 #include "core/{{namespace|lower}}/{{fallback_js_interface}}.h" 15 #include "core/{{namespace|lower}}/{{fallback_js_interface}}.h"
16 #include "core/dom/ContextFeatures.h" 16 #include "core/dom/ContextFeatures.h"
17 #include "core/dom/Document.h" 17 #include "core/dom/Document.h"
18 #include "core/frame/Settings.h" 18 #include "core/frame/Settings.h"
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 {% endfor %} 88 {% endfor %}
89 } 89 }
90 90
91 if (const WrapperTypeInfo* result = map.get(name.impl())) 91 if (const WrapperTypeInfo* result = map.get(name.impl()))
92 return result; 92 return result;
93 93
94 return &V8{{fallback_js_interface}}::wrapperTypeInfo; 94 return &V8{{fallback_js_interface}}::wrapperTypeInfo;
95 } 95 }
96 96
97 } 97 }
OLDNEW
« no previous file with comments | « Source/bindings/v8/v8.gypi ('k') | Source/core/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698