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

Side by Side Diff: Source/core/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
(Empty)
1 {% from "macros.tmpl" import license -%}
2 {{ license() }}
3
4 #ifndef {{namespace}}_h
5 #define {{namespace}}_h
6
7 #include "wtf/text/AtomicString.h"
8
9 namespace WebCore {
10 namespace {{namespace}} {
11
12 #ifndef {{namespace}}_HIDE_GLOBALS
13
14 {%- for name in names %}
15 extern const WTF::AtomicString {{name}};
16 {%- endfor %}
17
18 #endif // {{namespace}}_HIDE_GLOBALS
19
20 void init();
21
22 } // {{namespace}}
23 } // WebCore
24
25 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698