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

Unified Diff: third_party/WebKit/Source/core/css/MediaValues.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/MediaValues.h
diff --git a/third_party/WebKit/Source/core/css/MediaValues.h b/third_party/WebKit/Source/core/css/MediaValues.h
index 4e485b26a3fc7ead647f492d35a99744cb6e6d04..90b6bccf8fc6cd6cb489200c1cb9fb60bed4f0ee 100644
--- a/third_party/WebKit/Source/core/css/MediaValues.h
+++ b/third_party/WebKit/Source/core/css/MediaValues.h
@@ -18,14 +18,14 @@ class Document;
class CSSPrimitiveValue;
class LocalFrame;
-class CORE_EXPORT MediaValues : public RefCountedWillBeGarbageCollectedFinalized<MediaValues> {
+class CORE_EXPORT MediaValues : public GarbageCollectedFinalized<MediaValues> {
public:
virtual ~MediaValues() { }
DEFINE_INLINE_VIRTUAL_TRACE() { }
- static PassRefPtrWillBeRawPtr<MediaValues> createDynamicIfFrameExists(LocalFrame*);
- virtual PassRefPtrWillBeRawPtr<MediaValues> copy() const = 0;
+ static RawPtr<MediaValues> createDynamicIfFrameExists(LocalFrame*);
+ virtual RawPtr<MediaValues> copy() const = 0;
static bool computeLengthImpl(double value, CSSPrimitiveValue::UnitType, unsigned defaultFontSize, double viewportWidth, double viewportHeight, double& result);
template<typename T>
« no previous file with comments | « third_party/WebKit/Source/core/css/MediaQuerySetTest.cpp ('k') | third_party/WebKit/Source/core/css/MediaValues.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698