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

Unified Diff: third_party/WebKit/Source/core/css/StylePropertySerializer.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/StylePropertySerializer.h
diff --git a/third_party/WebKit/Source/core/css/StylePropertySerializer.h b/third_party/WebKit/Source/core/css/StylePropertySerializer.h
index b751f0e98c3b3b4f6ab786b3df3589b7a6261fc6..ef843157a35bb066705c06d0152ad9eca9c289db 100644
--- a/third_party/WebKit/Source/core/css/StylePropertySerializer.h
+++ b/third_party/WebKit/Source/core/css/StylePropertySerializer.h
@@ -82,7 +82,7 @@ private:
bool isValid() const { return m_value; }
private:
- RawPtrWillBeMember<const CSSValue> m_value;
+ Member<const CSSValue> m_value;
CSSPropertyID m_id;
bool m_isImportant;
bool m_isImplicit;
@@ -111,7 +111,7 @@ private:
bool hasExpandedAllProperty() const { return hasAllProperty() && m_needToExpandAll; }
bool hasAllProperty() const { return m_allIndex != -1; }
- RawPtrWillBeMember<const StylePropertySet> m_propertySet;
+ Member<const StylePropertySet> m_propertySet;
int m_allIndex;
BitArray<numCSSProperties> m_longhandPropertyUsed;
bool m_needToExpandAll;
« no previous file with comments | « third_party/WebKit/Source/core/css/StyleMedia.idl ('k') | third_party/WebKit/Source/core/css/StylePropertySerializer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698