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

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

Issue 775803002: Remove heap/Handle usage from v8_inspector (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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
« no previous file with comments | « sky/engine/bindings/core/v8/WrapperTypeInfo.h ('k') | sky/engine/core/animation/Animation.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 {% from "macros.tmpl" import license %} 1 {% from "macros.tmpl" import license %}
2 {{ license() }} 2 {{ license() }}
3 3
4 #ifndef {{namespace}}ElementFactory_h 4 #ifndef {{namespace}}ElementFactory_h
5 #define {{namespace}}ElementFactory_h 5 #define {{namespace}}ElementFactory_h
6 6
7 #include "platform/heap/Handle.h" 7 #include "sky/engine/wtf/Forward.h"
8 #include "wtf/Forward.h" 8 #include "sky/engine/wtf/PassRefPtr.h"
9 #include "wtf/PassRefPtr.h"
10 9
11 namespace blink { 10 namespace blink {
12 11
13 class Document; 12 class Document;
14 class {{namespace}}Element; 13 class {{namespace}}Element;
15 14
16 class {{namespace}}ElementFactory { 15 class {{namespace}}ElementFactory {
17 public: 16 public:
18 static PassRefPtr<{{namespace}}Element> create{{namespace}}Element( 17 static PassRefPtr<{{namespace}}Element> create{{namespace}}Element(
19 const AtomicString& localName, 18 const AtomicString& localName,
20 Document&, 19 Document&,
21 bool createdByParser = true); 20 bool createdByParser = true);
22 }; 21 };
23 22
24 } // namespace blink 23 } // namespace blink
25 24
26 #endif 25 #endif
OLDNEW
« no previous file with comments | « sky/engine/bindings/core/v8/WrapperTypeInfo.h ('k') | sky/engine/core/animation/Animation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698