flutter_flutter/engine/build/scripts/templates/ElementFactory.h.tmpl
Eric Seidel 8711bf43a8 Remove heap/Handle usage from v8_inspector
I also removed it from a bunch of core/
as almost all the places its included
it is not actually needed.

BUG=435243
TBR=yurys@chromium.org

Review URL: https://codereview.chromium.org/775803002
2014-12-02 14:29:16 -08:00

26 lines
519 B
Cheetah

{% 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 {{namespace}}Element;
class {{namespace}}ElementFactory {
public:
static PassRefPtr<{{namespace}}Element> create{{namespace}}Element(
const AtomicString& localName,
Document&,
bool createdByParser = true);
};
} // namespace blink
#endif