| OLD | NEW |
| 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/RefCountedSupplement.h" | |
| 9 #include "platform/heap/Handle.h" | 8 #include "platform/heap/Handle.h" |
| 10 #include "wtf/PassRefPtr.h" | 9 #include "wtf/PassRefPtr.h" |
| 11 #include "wtf/RefCounted.h" | 10 #include "wtf/RefCounted.h" |
| 12 #include "wtf/text/WTFString.h" | 11 #include "wtf/text/WTFString.h" |
| 13 | 12 |
| 14 namespace blink { | 13 namespace blink { |
| 15 | 14 |
| 16 class Page; | 15 class Page; |
| 17 | 16 |
| 18 class InternalSettingsGenerated : public RefCountedWillBeGarbageCollectedFinaliz
ed<InternalSettingsGenerated>, public ScriptWrappable { | 17 class InternalSettingsGenerated : public RefCountedWillBeGarbageCollectedFinaliz
ed<InternalSettingsGenerated>, public ScriptWrappable { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 31 RawPtrWillBeMember<Page> m_page; | 30 RawPtrWillBeMember<Page> m_page; |
| 32 | 31 |
| 33 {% for setting in settings if setting.type|to_idl_type %} | 32 {% for setting in settings if setting.type|to_idl_type %} |
| 34 {{setting.type}} m_{{setting.name}}; | 33 {{setting.type}} m_{{setting.name}}; |
| 35 {% endfor %} | 34 {% endfor %} |
| 36 }; | 35 }; |
| 37 | 36 |
| 38 } // namespace blink | 37 } // namespace blink |
| 39 | 38 |
| 40 #endif // InternalSettingsGenerated_h | 39 #endif // InternalSettingsGenerated_h |
| OLD | NEW |