| 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 "platform/bindings/ScriptWrappable.h" |
| 8 #include "platform/heap/Handle.h" | 8 #include "platform/heap/Handle.h" |
| 9 #include "platform/wtf/PassRefPtr.h" | 9 #include "platform/wtf/PassRefPtr.h" |
| 10 #include "platform/wtf/RefCounted.h" | 10 #include "platform/wtf/RefCounted.h" |
| 11 #include "platform/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 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 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 |
| OLD | NEW |