blob: 296d71aa55e9bd2878496050a39c829012b3863d [file] [log] [blame] [edit]
{% from "macros.tmpl" import license %}
{{ license() }}
#ifndef {{namespace}}ElementFactory_h
#define {{namespace}}ElementFactory_h
#include "sky/engine/wtf/Forward.h"
#include "sky/engine/wtf/PassRefPtr.h"
namespace blink {
class Document;
class Element;
class {{namespace}}ElementFactory {
public:
static PassRefPtr<Element> createElement(
const AtomicString& localName,
Document&,
bool createdByParser = true);
};
} // namespace blink
#endif