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

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

Issue 275283002: Split EventTargetFactory.in and auto-generate modules-related files. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Split EventTargetFactory.in and auto-generate modules-related files. Created 6 years, 7 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 | « Source/build/scripts/name_macros.py ('k') | Source/build/scripts/templates/MakeNames.h.tmpl » ('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 5
6 #ifdef SKIP_STATIC_CONSTRUCTORS_ON_GCC 6 #ifdef SKIP_STATIC_CONSTRUCTORS_ON_GCC
7 #define {{namespace|to_macro_style}}_NAMES_HIDE_GLOBALS 1 7 #define {{namespace|to_macro_style}}_NAMES_HIDE_GLOBALS 1
8 #endif 8 #endif
9 9
10 #include "{{namespace}}Names.h" 10 #include "{{namespace}}{{suffix}}Names.h"
11 11
12 #include "wtf/StaticConstructors.h" 12 #include "wtf/StaticConstructors.h"
13 13
14 namespace WebCore { 14 namespace WebCore {
15 namespace {{namespace}}Names { 15 namespace {{namespace}}Names {
16 16
17 using namespace WTF; 17 using namespace WTF;
18 18
19 {% for entry in entries|sort %} 19 {% for entry in entries|sort %}
20 {% if export %} 20 {% if export %}
21 DEFINE_GLOBAL(AtomicString, {{entry|symbol}}Storage) 21 DEFINE_GLOBAL(AtomicString, {{entry|symbol}}Storage)
22 {{export}} const AtomicString& {{entry|symbol}} = *reinterpret_cast<const Atomic String*>(&{{entry|symbol}}Storage); 22 {{export}} const AtomicString& {{entry|symbol}} = *reinterpret_cast<const Atomic String*>(&{{entry|symbol}}Storage);
23 {% else %} 23 {% else %}
24 DEFINE_GLOBAL(AtomicString, {{entry|symbol}}) 24 DEFINE_GLOBAL(AtomicString, {{entry|symbol}})
25 {% endif %} 25 {% endif %}
26 {% endfor %} 26 {% endfor %}
27 27
28 void init() 28 void init{{suffix}}()
29 { 29 {
30 {% for entry in entries|sort %} 30 {% for entry in entries|sort %}
31 StringImpl* {{entry|symbol}}Impl = StringImpl::createStatic("{{entry|cpp_nam e}}", {{entry|cpp_name|length}}, {{entry|cpp_name|hash}}); 31 StringImpl* {{entry|symbol}}Impl = StringImpl::createStatic("{{entry|cpp_nam e}}", {{entry|cpp_name|length}}, {{entry|cpp_name|hash}});
32 {% endfor %} 32 {% endfor %}
33 33
34 {% for entry in entries|sort %} 34 {% for entry in entries|sort %}
35 new ((void*)&{{entry|symbol}}) AtomicString({{entry|symbol}}Impl); 35 new ((void*)&{{entry|symbol}}) AtomicString({{entry|symbol}}Impl);
36 {% endfor %} 36 {% endfor %}
37 } 37 }
38 38
39 } // {{namespace}} 39 } // {{namespace}}Names
40 } // WebCore 40 } // WebCore
OLDNEW
« no previous file with comments | « Source/build/scripts/name_macros.py ('k') | Source/build/scripts/templates/MakeNames.h.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698