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

Side by Side Diff: Source/build/scripts/templates/ElementFactory.h.tmpl

Issue 27009005: Generate HTMLElementFactory with Python (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Actually use the code 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
« no previous file with comments | « Source/build/scripts/templates/ElementFactory.cpp.tmpl ('k') | Source/core/core.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {% from "macros.tmpl" import license -%}
2 {{ license() }}
3
4 #ifndef {{namespace}}ElementFactory_h
5 #define {{namespace}}ElementFactory_h
6
7 #include "wtf/Forward.h"
8 #include "wtf/PassRefPtr.h"
9
10 namespace WebCore {
11
12 class Element;
13 class Document;
14 class QualifiedName;
15 class HTMLFormElement;
16
17 class {{namespace}}Element;
18
19 class {{namespace}}ElementFactory {
20 public:
21 static PassRefPtr<{{namespace}}Element> create{{namespace}}Element(const Qua lifiedName&, Document*, HTMLFormElement* = 0, bool createdByParser = true);
22 };
23
24 } // WebCore
25
26 #endif
OLDNEW
« no previous file with comments | « Source/build/scripts/templates/ElementFactory.cpp.tmpl ('k') | Source/core/core.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698