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

Unified Diff: Source/build/scripts/templates/MakeQualifiedNames.h.tmpl

Issue 424983002: Stop using WebCore namespace in generated code (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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: Source/build/scripts/templates/MakeQualifiedNames.h.tmpl
diff --git a/Source/build/scripts/templates/MakeQualifiedNames.h.tmpl b/Source/build/scripts/templates/MakeQualifiedNames.h.tmpl
index 7ef36f8c7c412cf5f7571a8814f474917310154f..3f672d80812b36c8e2ada1744946da714bf19f15 100644
--- a/Source/build/scripts/templates/MakeQualifiedNames.h.tmpl
+++ b/Source/build/scripts/templates/MakeQualifiedNames.h.tmpl
@@ -7,7 +7,7 @@
#include "core/dom/QualifiedName.h"
#include "wtf/PassOwnPtr.h"
-namespace WebCore {
+namespace blink {
class {{namespace}}QualifiedName : public QualifiedName { };
@@ -18,12 +18,12 @@ extern const WTF::AtomicString& {{namespace_prefix}}NamespaceURI;
// Tags
{% for tag in tags|sort %}
-extern const WebCore::{{namespace}}QualifiedName& {{tag|symbol}}Tag;
+extern const blink::{{namespace}}QualifiedName& {{tag|symbol}}Tag;
{% endfor %}
// Attributes
{% for attr in attrs|sort %}
-extern const WebCore::QualifiedName& {{attr|symbol}}Attr;
+extern const blink::QualifiedName& {{attr|symbol}}Attr;
{% endfor %}
{% if tags %}
@@ -36,6 +36,6 @@ PassOwnPtr<const QualifiedName*[]> get{{namespace}}Attrs();
void init();
} // {{namespace}}Names
-} // WebCore
+} // namespace blink
#endif

Powered by Google App Engine
This is Rietveld 408576698