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

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

Issue 1853743005: Oilpan: Remove WillBe types (part 13) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
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}};

Powered by Google App Engine
This is Rietveld 408576698