mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
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
26 lines
519 B
Cheetah
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
|