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

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

Issue 2329463004: ABANDONED CL: Changes needed to make things compile after running rewrite_to_chrome_style tool. (Closed)
Patch Set: More fixes - things build fine at this point. 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/build/scripts/templates/MakeQualifiedNames.cpp.tmpl
diff --git a/third_party/WebKit/Source/build/scripts/templates/MakeQualifiedNames.cpp.tmpl b/third_party/WebKit/Source/build/scripts/templates/MakeQualifiedNames.cpp.tmpl
index 69f37ea04db71724a15ea6358dca403e79df7b80..25f9ba9f46e4455a27dcfc20a413e6dbe7f96100 100644
--- a/third_party/WebKit/Source/build/scripts/templates/MakeQualifiedNames.cpp.tmpl
+++ b/third_party/WebKit/Source/build/scripts/templates/MakeQualifiedNames.cpp.tmpl
@@ -25,7 +25,7 @@ const {{namespace}}QualifiedName& {{tag|symbol}}Tag = reinterpret_cast<{{namespa
std::unique_ptr<const {{namespace}}QualifiedName*[]> get{{namespace}}Tags() {
- std::unique_ptr<const {{namespace}}QualifiedName*[]> tags = wrapArrayUnique(new const {{namespace}}QualifiedName*[{{namespace}}TagsCount]);
+ std::unique_ptr<const {{namespace}}QualifiedName*[]> tags = WrapArrayUnique(new const {{namespace}}QualifiedName*[{{namespace}}TagsCount]);
for (size_t i = 0; i < {{namespace}}TagsCount; i++)
tags[i] = reinterpret_cast<{{namespace}}QualifiedName*>(&{{suffix}}TagStorage) + i;
return tags;
@@ -42,7 +42,7 @@ const QualifiedName& {{attr|symbol}}Attr = reinterpret_cast<QualifiedName*>(&{{s
{% if namespace != 'HTML' %}
std::unique_ptr<const QualifiedName*[]> get{{namespace}}Attrs() {
- std::unique_ptr<const QualifiedName*[]> attrs = wrapArrayUnique(new const QualifiedName*[{{namespace}}AttrsCount]);
+ std::unique_ptr<const QualifiedName*[]> attrs = WrapArrayUnique(new const QualifiedName*[{{namespace}}AttrsCount]);
for (size_t i = 0; i < {{namespace}}AttrsCount; i++)
attrs[i] = reinterpret_cast<QualifiedName*>(&{{suffix}}AttrStorage) + i;
return attrs;
@@ -77,11 +77,11 @@ void init() {
{% endif %}
size_t attr_i = 0;
for (size_t i = 0; i < WTF_ARRAY_LENGTH(kNames); i++) {
- StringImpl* stringImpl = StringImpl::createStatic(kNames[i].name, kNames[i].length, kNames[i].hash);
+ StringImpl* stringImpl = StringImpl::CreateStatic(kNames[i].name, kNames[i].length, kNames[i].hash);
{% if tags %}
if (kNames[i].isTag) {
void* address = reinterpret_cast<{{namespace}}QualifiedName*>(&{{suffix}}TagStorage) + tag_i;
- QualifiedName::createStatic(address, stringImpl, {{namespace_prefix}}NS);
+ QualifiedName::CreateStatic(address, stringImpl, {{namespace_prefix}}NS);
tag_i++;
}
@@ -90,9 +90,9 @@ void init() {
{% endif %}
void* address = reinterpret_cast<QualifiedName*>(&{{suffix}}AttrStorage) + attr_i;
{% if use_namespace_for_attrs %}
- QualifiedName::createStatic(address, stringImpl, {{namespace_prefix}}NS);
+ QualifiedName::CreateStatic(address, stringImpl, {{namespace_prefix}}NS);
{% else %}
- QualifiedName::createStatic(address, stringImpl);
+ QualifiedName::CreateStatic(address, stringImpl);
{% endif %}
attr_i++;
}

Powered by Google App Engine
This is Rietveld 408576698