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

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

Issue 26414004: Move core/scripts to build/scripts so that platform can use them. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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
OLDNEW
1 {% from "macros.tmpl" import license -%} 1 {% from "macros.tmpl" import license -%}
2 {{ license() }} 2 {{ license() }}
3 3
4 #ifndef {{namespace}}_h 4 #ifndef {{namespace}}_h
5 #define {{namespace}}_h 5 #define {{namespace}}_h
6 6
7 #include "wtf/text/AtomicString.h" 7 #include "wtf/text/AtomicString.h"
8 8
9 namespace WebCore { 9 namespace WebCore {
10 namespace {{namespace}} { 10 namespace {{namespace}} {
11 11
12 #ifndef {{namespace}}_HIDE_GLOBALS 12 #ifndef {{namespace}}_HIDE_GLOBALS
13 13
14 {%- for name in names %} 14 {%- for name in names %}
15 extern const WTF::AtomicString {{name}}; 15 extern const WTF::AtomicString {{name}};
16 {%- endfor %} 16 {%- endfor %}
17 17
18 #endif // {{namespace}}_HIDE_GLOBALS 18 #endif // {{namespace}}_HIDE_GLOBALS
19 19
20 void init(); 20 void init();
21 21
22 } // {{namespace}} 22 } // {{namespace}}
23 } // WebCore 23 } // WebCore
24 24
25 #endif 25 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698