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

Side by Side Diff: sky/engine/build/scripts/templates/MakeQualifiedNames.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
6 #include "{{namespace}}Names.h" 4 #include "{{namespace}}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 blink; 11 using namespace blink;
14 12
15 {% if tags %} 13 {% if tags %}
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 {% endfor %} 56 {% endfor %}
59 57
60 // Attrs 58 // Attrs
61 {% for attr in attrs|sort %} 59 {% for attr in attrs|sort %}
62 QualifiedName::createStatic((void*)&{{attr|symbol}}Attr, {{attr|symbol}}Impl ); 60 QualifiedName::createStatic((void*)&{{attr|symbol}}Attr, {{attr|symbol}}Impl );
63 {% endfor %} 61 {% endfor %}
64 } 62 }
65 63
66 } // {{namespace}} 64 } // {{namespace}}
67 } // namespace blink 65 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698