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

Unified Diff: third_party/WebKit/Source/core/style/StyleRareInheritedData.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/StyleRareInheritedData.h
diff --git a/third_party/WebKit/Source/core/style/StyleRareInheritedData.h b/third_party/WebKit/Source/core/style/StyleRareInheritedData.h
index feacd71da794641a139d389e4f6c91b51e4a5a98..fa85c33a44528bd6ac430e3eb513504bd18ef21f 100644
--- a/third_party/WebKit/Source/core/style/StyleRareInheritedData.h
+++ b/third_party/WebKit/Source/core/style/StyleRareInheritedData.h
@@ -70,7 +70,7 @@ public:
bool shadowDataEquivalent(const StyleRareInheritedData&) const;
bool quotesDataEquivalent(const StyleRareInheritedData&) const;
- RefPtrWillBePersistent<StyleImage> listStyleImage;
+ Persistent<StyleImage> listStyleImage;
StyleColor textStrokeColor() const { return m_textStrokeColorIsCurrentColor ? StyleColor::currentColor() : StyleColor(m_textStrokeColor); }
StyleColor textFillColor() const { return m_textFillColorIsCurrentColor ? StyleColor::currentColor() : StyleColor(m_textFillColor); }
@@ -98,7 +98,7 @@ public:
RefPtr<ShadowList> textShadow; // Our text shadow information for shadowed text drawing.
AtomicString highlight; // Apple-specific extension for custom highlight rendering.
- RefPtrWillBePersistent<CursorList> cursorData;
+ Persistent<CursorList> cursorData;
Length indent;
float m_effectiveZoom;

Powered by Google App Engine
This is Rietveld 408576698