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

Unified Diff: Source/core/css/resolver/ElementResolveContext.h

Issue 686723002: Improve RAII of StyleResolverState. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix assertions. 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/resolver/ElementResolveContext.h
diff --git a/Source/core/css/resolver/ElementResolveContext.h b/Source/core/css/resolver/ElementResolveContext.h
index 09b8cd105c0b09a52401488136873f525f23432d..1c74738a9f96a23759de44e2eb86665d56dc4320 100644
--- a/Source/core/css/resolver/ElementResolveContext.h
+++ b/Source/core/css/resolver/ElementResolveContext.h
@@ -38,10 +38,11 @@ class ElementResolveContext {
public:
explicit ElementResolveContext(const Document&);
- explicit ElementResolveContext(Element&);
+ ElementResolveContext(Element&, RenderStyle* parentStyle);
Element* element() const { return m_element; }
const ContainerNode* parentNode() const { return m_parentNode; }
+ RenderStyle* parentStyle() const { return m_parentStyle; }
const RenderStyle* rootElementStyle() const { return m_rootElementStyle; }
EInsideLink elementLinkState() const { return m_elementLinkState; }
bool distributedToInsertionPoint() const { return m_distributedToInsertionPoint; }
@@ -49,6 +50,7 @@ public:
private:
RawPtrWillBeMember<Element> m_element;
RawPtrWillBeMember<ContainerNode> m_parentNode;
+ RenderStyle* m_parentStyle;
RenderStyle* m_rootElementStyle;
EInsideLink m_elementLinkState;
bool m_distributedToInsertionPoint;

Powered by Google App Engine
This is Rietveld 408576698