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

Unified Diff: Source/core/dom/NodeRenderingTraversal.h

Issue 201683003: Remove resetStyleInheritance. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Resolve conflicts Created 6 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
« no previous file with comments | « Source/core/css/resolver/StyleResolverState.cpp ('k') | Source/core/dom/NodeRenderingTraversal.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/NodeRenderingTraversal.h
diff --git a/Source/core/dom/NodeRenderingTraversal.h b/Source/core/dom/NodeRenderingTraversal.h
index 2d96b2595d1e8d4e29d81e72a7c8b1e03207c8f0..0a0bd9c13e5aef4764f35e7f2dfabeb50a947e89 100644
--- a/Source/core/dom/NodeRenderingTraversal.h
+++ b/Source/core/dom/NodeRenderingTraversal.h
@@ -40,24 +40,19 @@ class ParentDetails {
public:
ParentDetails()
: m_insertionPoint(0)
- , m_resetStyleInheritance(false)
{ }
const InsertionPoint* insertionPoint() const { return m_insertionPoint; }
- bool resetStyleInheritance() const { return m_resetStyleInheritance; }
void didTraverseInsertionPoint(const InsertionPoint*);
- void didTraverseShadowRoot(const ShadowRoot*);
bool operator==(const ParentDetails& other)
{
- return m_insertionPoint == other.m_insertionPoint
- && m_resetStyleInheritance == other.m_resetStyleInheritance;
+ return m_insertionPoint == other.m_insertionPoint;
}
private:
const InsertionPoint* m_insertionPoint;
- bool m_resetStyleInheritance;
};
ContainerNode* parent(const Node*);
« no previous file with comments | « Source/core/css/resolver/StyleResolverState.cpp ('k') | Source/core/dom/NodeRenderingTraversal.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698