Index: third_party/WebKit/Source/build/scripts/templates/InternalSettingsGenerated.h.tmpl |
diff --git a/third_party/WebKit/Source/build/scripts/templates/InternalSettingsGenerated.h.tmpl b/third_party/WebKit/Source/build/scripts/templates/InternalSettingsGenerated.h.tmpl |
index 4dbc6f0f4251850f15aaaaa420071a7815d55aaf..90f93615ce0c3f98b275f1f4d64e74ae9670a3b7 100644 |
--- a/third_party/WebKit/Source/build/scripts/templates/InternalSettingsGenerated.h.tmpl |
+++ b/third_party/WebKit/Source/build/scripts/templates/InternalSettingsGenerated.h.tmpl |
@@ -14,7 +14,7 @@ namespace blink { |
class Page; |
-class InternalSettingsGenerated : public RefCountedWillBeGarbageCollectedFinalized<InternalSettingsGenerated>, public ScriptWrappable { |
+class InternalSettingsGenerated : public GarbageCollectedFinalized<InternalSettingsGenerated>, public ScriptWrappable { |
DEFINE_WRAPPERTYPEINFO(); |
public: |
explicit InternalSettingsGenerated(Page*); |
@@ -27,7 +27,7 @@ public: |
DECLARE_VIRTUAL_TRACE(); |
private: |
- RawPtrWillBeMember<Page> m_page; |
+ Member<Page> m_page; |
{% for setting in settings if setting.type|to_idl_type %} |
{{setting.type}} m_{{setting.name}}; |