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

Unified Diff: Source/core/css/SelectorChecker.h

Issue 603193005: Move the Widget hierarchy to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase upto and resolve r182737 conflict. Created 6 years, 3 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/css/SelectorChecker.h
diff --git a/Source/core/css/SelectorChecker.h b/Source/core/css/SelectorChecker.h
index d899535ff680023f20c464d016bbe56b7e925aa6..1e9d34955ba6aed7cd258d77606648b83c6a24be 100644
--- a/Source/core/css/SelectorChecker.h
+++ b/Source/core/css/SelectorChecker.h
@@ -66,7 +66,7 @@ public:
, visitedMatchType(visitedMatchType)
, pseudoId(NOPSEUDO)
, elementStyle(0)
- , scrollbar(0)
+ , scrollbar(nullptr)
, scrollbarPart(NoPart)
, isSubSelector(false)
, hasScrollbarPseudo(false)
@@ -83,7 +83,7 @@ public:
VisitedMatchType visitedMatchType;
PseudoId pseudoId;
RenderStyle* elementStyle;
- RenderScrollbar* scrollbar;
+ RawPtrWillBeMember<RenderScrollbar> scrollbar;
ScrollbarPart scrollbarPart;
bool isSubSelector;
bool hasScrollbarPseudo;

Powered by Google App Engine
This is Rietveld 408576698