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

Unified Diff: third_party/WebKit/Source/core/css/SelectorChecker.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/css/SelectorChecker.h
diff --git a/third_party/WebKit/Source/core/css/SelectorChecker.h b/third_party/WebKit/Source/core/css/SelectorChecker.h
index 0d9fabe0bd3cea3d1b91920fe0dcd50aed9748f6..84fbfdf0e04a31bbdcbbf0cf75cdaab27d1b14c1 100644
--- a/third_party/WebKit/Source/core/css/SelectorChecker.h
+++ b/third_party/WebKit/Source/core/css/SelectorChecker.h
@@ -54,7 +54,7 @@ public:
bool isUARule = false;
bool isQuerySelector = false;
ComputedStyle* elementStyle = nullptr;
- RawPtrWillBeMember<LayoutScrollbar> scrollbar = nullptr;
+ Member<LayoutScrollbar> scrollbar = nullptr;
ScrollbarPart scrollbarPart = NoPart;
};
@@ -88,9 +88,9 @@ public:
}
const CSSSelector* selector;
- RawPtrWillBeMember<Element> element;
- RawPtrWillBeMember<Element> previousElement;
- RawPtrWillBeMember<const ContainerNode> scope;
+ Member<Element> element;
+ Member<Element> previousElement;
+ Member<const ContainerNode> scope;
VisitedMatchType visitedMatchType;
PseudoId pseudoId;
bool isSubSelector;
@@ -144,7 +144,7 @@ private:
bool m_isUARule;
bool m_isQuerySelector;
ComputedStyle* m_elementStyle;
- RawPtrWillBeMember<LayoutScrollbar> m_scrollbar;
+ Member<LayoutScrollbar> m_scrollbar;
ScrollbarPart m_scrollbarPart;
};
« no previous file with comments | « third_party/WebKit/Source/core/css/RuleSetTest.cpp ('k') | third_party/WebKit/Source/core/css/SelectorChecker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698