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

Side by Side Diff: Source/build/scripts/templates/MakeNames.cpp.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 #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}}_HIDE_GLOBALS 1 7 #define {{namespace}}_HIDE_GLOBALS 1
8 #endif 8 #endif
9 9
10 #include "{{namespace}}.h" 10 #include "{{namespace}}.h"
(...skipping 16 matching lines...) Expand all
27 {%- endfor %} 27 {%- endfor %}
28 28
29 29
30 {%- for name in names %} 30 {%- for name in names %}
31 new ((void*)&{{name}}) AtomicString({{name}}Impl); 31 new ((void*)&{{name}}) AtomicString({{name}}Impl);
32 {%- endfor %} 32 {%- endfor %}
33 } 33 }
34 34
35 } // {{namespace}} 35 } // {{namespace}}
36 } // WebCore 36 } // WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698