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

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, 10 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 2702f6345d06b882c3579f098f3dbe9fe56415d8..c48281de9faeb4874d8469457878c5de10d89c1a 100644
--- a/third_party/WebKit/Source/core/css/SelectorChecker.h
+++ b/third_party/WebKit/Source/core/css/SelectorChecker.h
@@ -53,7 +53,7 @@ public:
Mode mode = ResolvingStyle;
bool isUARule = false;
ComputedStyle* elementStyle = nullptr;
- RawPtrWillBeMember<LayoutScrollbar> scrollbar = nullptr;
+ Member<LayoutScrollbar> scrollbar = nullptr;
ScrollbarPart scrollbarPart = NoPart;
};
@@ -86,9 +86,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;
@@ -141,7 +141,7 @@ private:
Mode m_mode;
bool m_isUARule;
ComputedStyle* m_elementStyle;
- RawPtrWillBeMember<LayoutScrollbar> m_scrollbar;
+ Member<LayoutScrollbar> m_scrollbar;
ScrollbarPart m_scrollbarPart;
};

Powered by Google App Engine
This is Rietveld 408576698