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

Unified Diff: third_party/WebKit/Source/core/style/StyleRareNonInheritedData.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/style/StyleRareNonInheritedData.h
diff --git a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h
index 64b6d65dbbd694e7470949578b5adffd8bc65887..daba95c154f70c4774418e650cfa2bda5977a24b 100644
--- a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h
+++ b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h
@@ -122,7 +122,7 @@ public:
DataRef<StyleGridItemData> m_gridItem;
DataRef<StyleScrollSnapData> m_scrollSnap;
- OwnPtrWillBePersistent<ContentData> m_content;
+ Persistent<ContentData> m_content;
OwnPtr<CounterDirectiveMap> m_counterDirectives;
OwnPtr<CSSAnimationData> m_animations;
OwnPtr<CSSTransitionData> m_transitions;
@@ -131,7 +131,7 @@ public:
RefPtr<StyleReflection> m_boxReflect;
- RefPtrWillBePersistent<ShapeValue> m_shapeOutside;
+ Persistent<ShapeValue> m_shapeOutside;
RefPtr<ClipPathOperation> m_clipPath;
FillLayer m_mask;

Powered by Google App Engine
This is Rietveld 408576698