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

Unified Diff: third_party/WebKit/Source/core/testing/InternalSettings.h

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/core/testing/InternalSettings.h
diff --git a/third_party/WebKit/Source/core/testing/InternalSettings.h b/third_party/WebKit/Source/core/testing/InternalSettings.h
index 061369dad7aa733ad9a71ec2b4d8cf826c70b976..51bc8aaf21344a0c0d5adbcb01711ad5b759e018 100644
--- a/third_party/WebKit/Source/core/testing/InternalSettings.h
+++ b/third_party/WebKit/Source/core/testing/InternalSettings.h
@@ -49,7 +49,7 @@ class Settings;
#if ENABLE(OILPAN)
class InternalSettings final : public InternalSettingsGenerated, public HeapSupplement<Page> {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(InternalSettings);
+ USING_GARBAGE_COLLECTED_MIXIN(InternalSettings);
#else
class InternalSettings final : public InternalSettingsGenerated {
#endif
@@ -82,9 +82,9 @@ public:
bool m_originalCompositorWorkerEnabled;
};
- static PassRefPtrWillBeRawPtr<InternalSettings> create(Page& page)
+ static RawPtr<InternalSettings> create(Page& page)
{
- return adoptRefWillBeNoop(new InternalSettings(page));
+ return new InternalSettings(page);
}
static InternalSettings* from(Page&);
@@ -146,7 +146,7 @@ private:
Page* page() const { return m_page; }
static const char* supplementName();
- RawPtrWillBeWeakMember<Page> m_page;
+ WeakMember<Page> m_page;
Backup m_backup;
};

Powered by Google App Engine
This is Rietveld 408576698