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

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

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/core/css/MediaValuesDynamic.h
diff --git a/third_party/WebKit/Source/core/css/MediaValuesDynamic.h b/third_party/WebKit/Source/core/css/MediaValuesDynamic.h
index c6d2d9eedc89e20b4c50d18f7527379e824047a2..945c2c55a7dff6acef4f091227ed73e67e484cf3 100644
--- a/third_party/WebKit/Source/core/css/MediaValuesDynamic.h
+++ b/third_party/WebKit/Source/core/css/MediaValuesDynamic.h
@@ -13,9 +13,9 @@ class Document;
class MediaValuesDynamic final : public MediaValues {
public:
- static PassRefPtrWillBeRawPtr<MediaValues> create(Document&);
- static PassRefPtrWillBeRawPtr<MediaValues> create(LocalFrame*);
- PassRefPtrWillBeRawPtr<MediaValues> copy() const override;
+ static RawPtr<MediaValues> create(Document&);
+ static RawPtr<MediaValues> create(LocalFrame*);
+ RawPtr<MediaValues> copy() const override;
bool computeLength(double value, CSSPrimitiveValue::UnitType, int& result) const override;
bool computeLength(double value, CSSPrimitiveValue::UnitType, double& result) const override;
@@ -46,7 +46,7 @@ protected:
// This raw ptr is safe, as MediaValues would not outlive MediaQueryEvaluator, and
// MediaQueryEvaluator is reset on |Document::detach|.
- RawPtrWillBeMember<LocalFrame> m_frame;
+ Member<LocalFrame> m_frame;
bool m_viewportDimensionsOverridden;
double m_viewportWidthOverride;
double m_viewportHeightOverride;
« no previous file with comments | « third_party/WebKit/Source/core/css/MediaValuesCached.cpp ('k') | third_party/WebKit/Source/core/css/MediaValuesDynamic.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698