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

Side by Side Diff: third_party/WebKit/Source/build/scripts/templates/InternalSettingsGenerated.h.tmpl

Issue 2822953002: Remove old wtf/ directory. (Closed)
Patch Set: Fixup *.typemap files. Created 3 years, 8 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
OLDNEW
1 {% from "macros.tmpl" import license %} 1 {% from "macros.tmpl" import license %}
2 {{ license() }} 2 {{ license() }}
3 3
4 #ifndef InternalSettingsGenerated_h 4 #ifndef InternalSettingsGenerated_h
5 #define InternalSettingsGenerated_h 5 #define InternalSettingsGenerated_h
6 6
7 #include "bindings/core/v8/ScriptWrappable.h" 7 #include "bindings/core/v8/ScriptWrappable.h"
8 #include "platform/heap/Handle.h" 8 #include "platform/heap/Handle.h"
9 #include "wtf/PassRefPtr.h" 9 #include "platform/wtf/PassRefPtr.h"
10 #include "wtf/RefCounted.h" 10 #include "platform/wtf/RefCounted.h"
11 #include "wtf/text/WTFString.h" 11 #include "platform/wtf/text/WTFString.h"
12 12
13 namespace blink { 13 namespace blink {
14 14
15 class Page; 15 class Page;
16 16
17 class InternalSettingsGenerated 17 class InternalSettingsGenerated
18 : public GarbageCollectedFinalized<InternalSettingsGenerated>, 18 : public GarbageCollectedFinalized<InternalSettingsGenerated>,
19 public ScriptWrappable { 19 public ScriptWrappable {
20 DEFINE_WRAPPERTYPEINFO(); 20 DEFINE_WRAPPERTYPEINFO();
21 21
(...skipping 11 matching lines...) Expand all
33 Member<Page> m_page; 33 Member<Page> m_page;
34 34
35 {% for setting in settings if setting.type|to_idl_type %} 35 {% for setting in settings if setting.type|to_idl_type %}
36 {{setting.type}} m_{{setting.name}}; 36 {{setting.type}} m_{{setting.name}};
37 {% endfor %} 37 {% endfor %}
38 }; 38 };
39 39
40 } // namespace blink 40 } // namespace blink
41 41
42 #endif // InternalSettingsGenerated_h 42 #endif // InternalSettingsGenerated_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698