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

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: Switch LocalFrame::m_pluginElements rep to HashSet<HTMLPlugInElement*> Created 6 years, 2 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 269e8ae4264d3509f54077255379b0fe17181013..e4e9387aff2191ee22ccdcb430c8400767f3a310 100644
--- a/Source/core/css/SelectorChecker.h
+++ b/Source/core/css/SelectorChecker.h
@@ -60,7 +60,7 @@ public:
, visitedMatchType(visitedMatchType)
, pseudoId(NOPSEUDO)
, elementStyle(0)
- , scrollbar(0)
+ , scrollbar(nullptr)
, scrollbarPart(NoPart)
, isSubSelector(false)
, hasScrollbarPseudo(false)
@@ -78,7 +78,7 @@ public:
VisitedMatchType visitedMatchType;
PseudoId pseudoId;
RenderStyle* elementStyle;
- RenderScrollbar* scrollbar;
+ RawPtrWillBeMember<RenderScrollbar> scrollbar;
ScrollbarPart scrollbarPart;
unsigned isSubSelector : 1;
unsigned hasScrollbarPseudo : 1;

Powered by Google App Engine
This is Rietveld 408576698