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

Side by Side Diff: third_party/WebKit/Source/build/scripts/templates/MakeQualifiedNames.cpp.tmpl

Issue 2822953002: Remove old wtf/ directory. (Closed)
Patch Set: Fixup *.typemap files. Created 3 years, 8 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 "{{namespace}}Names.h" 4 #include "{{namespace}}Names.h"
5 5
6 #include "wtf/PtrUtil.h" 6 #include "platform/wtf/PtrUtil.h"
7 #include "wtf/StaticConstructors.h" 7 #include "platform/wtf/StaticConstructors.h"
8 #include "wtf/StdLibExtras.h" 8 #include "platform/wtf/StdLibExtras.h"
9 #include <memory> 9 #include <memory>
10 10
11 namespace blink { 11 namespace blink {
12 namespace {{namespace}}Names { 12 namespace {{namespace}}Names {
13 13
14 using namespace blink; 14 using namespace blink;
15 15
16 DEFINE_GLOBAL(AtomicString, {{namespace_prefix}}NamespaceURI); 16 DEFINE_GLOBAL(AtomicString, {{namespace_prefix}}NamespaceURI);
17 17
18 {% if tags %} 18 {% if tags %}
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 attr_i++; 97 attr_i++;
98 } 98 }
99 {% if tags %} 99 {% if tags %}
100 ASSERT(tag_i == {{namespace}}TagsCount); 100 ASSERT(tag_i == {{namespace}}TagsCount);
101 {% endif %} 101 {% endif %}
102 ASSERT(attr_i == {{namespace}}AttrsCount); 102 ASSERT(attr_i == {{namespace}}AttrsCount);
103 } 103 }
104 104
105 } // {{namespace}} 105 } // {{namespace}}
106 } // namespace blink 106 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698