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

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

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (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 b5fea9186a6debc4f42fe48ff09a30fffadb9df7..ae983186ca4a77bf25db8f3ae14ddb09703597c2 100644
--- a/third_party/WebKit/Source/build/scripts/templates/InternalSettingsGenerated.h.tmpl
+++ b/third_party/WebKit/Source/build/scripts/templates/InternalSettingsGenerated.h.tmpl
@@ -15,7 +15,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*);
@@ -28,7 +28,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