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

Unified Diff: Source/core/css/MediaValuesDynamic.h

Issue 1260403002: Oilpan: Remove raw pointer to LocalFrame from MediaValuesDynamic (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « Source/core/css/MediaValuesCached.cpp ('k') | Source/core/css/MediaValuesDynamic.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/MediaValuesDynamic.h
diff --git a/Source/core/css/MediaValuesDynamic.h b/Source/core/css/MediaValuesDynamic.h
index b4e6ec592baebeef20b96d356b771c54baa054f8..6a1731c9d2f8adf1ca02ad3ebd637ad193d236bc 100644
--- a/Source/core/css/MediaValuesDynamic.h
+++ b/Source/core/css/MediaValuesDynamic.h
@@ -13,9 +13,9 @@ class Document;
class MediaValuesDynamic final : public MediaValues {
public:
- static PassRefPtr<MediaValues> create(Document&);
- static PassRefPtr<MediaValues> create(LocalFrame*);
- PassRefPtr<MediaValues> copy() const override;
+ static PassRefPtrWillBeRawPtr<MediaValues> create(Document&);
+ static PassRefPtrWillBeRawPtr<MediaValues> create(LocalFrame*);
+ PassRefPtrWillBeRawPtr<MediaValues> copy() const override;
bool isSafeToSendToAnotherThread() const override;
bool computeLength(double value, CSSPrimitiveValue::UnitType, int& result) const override;
bool computeLength(double value, CSSPrimitiveValue::UnitType, double& result) const override;
@@ -38,13 +38,14 @@ public:
Document* document() const override;
bool hasValues() const override;
+ DECLARE_VIRTUAL_TRACE();
+
protected:
MediaValuesDynamic(LocalFrame*);
// This raw ptr is safe, as MediaValues would not outlive MediaQueryEvaluator, and
// MediaQueryEvaluator is reset on |Document::detach|.
- // FIXME: Oilpan: This raw ptr should be changed to a Member when LocalFrame is migrated to the heap.
- LocalFrame* m_frame;
+ RawPtrWillBeMember<LocalFrame> m_frame;
};
} // namespace
« no previous file with comments | « Source/core/css/MediaValuesCached.cpp ('k') | Source/core/css/MediaValuesDynamic.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698