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

Unified Diff: third_party/WebKit/Source/core/css/parser/SizesCalcParser.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/parser/SizesCalcParser.h
diff --git a/third_party/WebKit/Source/core/css/parser/SizesCalcParser.h b/third_party/WebKit/Source/core/css/parser/SizesCalcParser.h
index 011479fefd91cdf7a79284c8fd064840ba4eb4ad..5d0498500b7c590adb11a14ab4ccd48b4672044a 100644
--- a/third_party/WebKit/Source/core/css/parser/SizesCalcParser.h
+++ b/third_party/WebKit/Source/core/css/parser/SizesCalcParser.h
@@ -37,7 +37,7 @@ struct SizesCalcValue {
class CORE_EXPORT SizesCalcParser {
STACK_ALLOCATED();
public:
- SizesCalcParser(CSSParserTokenRange, PassRefPtrWillBeRawPtr<MediaValues>);
+ SizesCalcParser(CSSParserTokenRange, RawPtr<MediaValues>);
float result() const;
bool isValid() const { return m_isValid; }
@@ -51,7 +51,7 @@ private:
void appendOperator(const CSSParserToken&);
Vector<SizesCalcValue> m_valueList;
- RefPtrWillBeMember<MediaValues> m_mediaValues;
+ Member<MediaValues> m_mediaValues;
bool m_isValid;
float m_result;
};

Powered by Google App Engine
This is Rietveld 408576698