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

Unified Diff: Source/core/dom/FirstLetterPseudoElement.h

Issue 869323003: Oilpan: move RenderObjects off heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: minor fixes Created 5 years, 11 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: Source/core/dom/FirstLetterPseudoElement.h
diff --git a/Source/core/dom/FirstLetterPseudoElement.h b/Source/core/dom/FirstLetterPseudoElement.h
index 6e97a483bf30c583c6fdf9b43bdd0ccb625dfcbf..407bf31e388e6e8ca0b27a1c9112983896b320c9 100644
--- a/Source/core/dom/FirstLetterPseudoElement.h
+++ b/Source/core/dom/FirstLetterPseudoElement.h
@@ -43,7 +43,6 @@ public:
}
virtual ~FirstLetterPseudoElement();
- virtual void trace(Visitor*) override;
static RenderObject* firstLetterTextRenderer(const Element&);
static unsigned firstLetterLength(const String&);
@@ -64,7 +63,7 @@ private:
void attachFirstLetterTextRenderers();
RenderStyle* styleForFirstLetter(RenderObject*);
- RawPtrWillBeMember<RenderTextFragment> m_remainingTextRenderer;
+ RenderTextFragment* m_remainingTextRenderer;
};
DEFINE_ELEMENT_TYPE_CASTS(FirstLetterPseudoElement, isFirstLetterPseudoElement());

Powered by Google App Engine
This is Rietveld 408576698