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

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

Issue 1206763002: Really remove config.h (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 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
6 #include "{{namespace}}{{suffix}}Names.h" 4 #include "{{namespace}}{{suffix}}Names.h"
7 5
8 #include "wtf/StaticConstructors.h" 6 #include "wtf/StaticConstructors.h"
9 7
10 namespace blink { 8 namespace blink {
11 namespace {{namespace}}Names { 9 namespace {{namespace}}Names {
12 10
13 using namespace WTF; 11 using namespace WTF;
14 12
15 {% for entry in entries|sort %} 13 {% for entry in entries|sort %}
(...skipping 12 matching lines...) Expand all
28 26
29 {% for entry in entries|sort %} 27 {% for entry in entries|sort %}
30 {% filter enable_conditional(entry.Conditional) %} 28 {% filter enable_conditional(entry.Conditional) %}
31 new ((void*)&{{entry|symbol}}) AtomicString({{entry|symbol}}Impl); 29 new ((void*)&{{entry|symbol}}) AtomicString({{entry|symbol}}Impl);
32 {% endfilter %} 30 {% endfilter %}
33 {% endfor %} 31 {% endfor %}
34 } 32 }
35 33
36 } // {{namespace}}Names 34 } // {{namespace}}Names
37 } // namespace blink 35 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698