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

Unified Diff: third_party/WebKit/Source/core/css/resolver/ElementResolveContext.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/resolver/ElementResolveContext.h
diff --git a/third_party/WebKit/Source/core/css/resolver/ElementResolveContext.h b/third_party/WebKit/Source/core/css/resolver/ElementResolveContext.h
index 029ba380af7481528d9af9ad9aff50f371914f19..de7451902c7cc2a43316d390893c53714b6c479d 100644
--- a/third_party/WebKit/Source/core/css/resolver/ElementResolveContext.h
+++ b/third_party/WebKit/Source/core/css/resolver/ElementResolveContext.h
@@ -48,8 +48,8 @@ public:
bool distributedToInsertionPoint() const { return m_distributedToInsertionPoint; }
private:
- RawPtrWillBeMember<Element> m_element;
- RawPtrWillBeMember<ContainerNode> m_parentNode;
+ Member<Element> m_element;
+ Member<ContainerNode> m_parentNode;
const ComputedStyle* m_rootElementStyle;
EInsideLink m_elementLinkState;
bool m_distributedToInsertionPoint;

Powered by Google App Engine
This is Rietveld 408576698