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

Unified Diff: sky/engine/core/dom/shadow/SelectRuleFeatureSet.cpp

Issue 696903002: Remove a lot of API surface from Element. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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
« no previous file with comments | « sky/engine/core/dom/shadow/SelectRuleFeatureSet.h ('k') | sky/engine/core/frame/UseCounter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/dom/shadow/SelectRuleFeatureSet.cpp
diff --git a/sky/engine/core/dom/shadow/SelectRuleFeatureSet.cpp b/sky/engine/core/dom/shadow/SelectRuleFeatureSet.cpp
index ba90bfc0add482bc34e200f0399fb386c3be1112..79af5ae1f96c06cffbf19fd21188fa9c51f34c70 100644
--- a/sky/engine/core/dom/shadow/SelectRuleFeatureSet.cpp
+++ b/sky/engine/core/dom/shadow/SelectRuleFeatureSet.cpp
@@ -38,20 +38,17 @@
namespace blink {
SelectRuleFeatureSet::SelectRuleFeatureSet()
- : m_featureFlags(0)
{
}
void SelectRuleFeatureSet::add(const SelectRuleFeatureSet& featureSet)
{
m_cssRuleFeatureSet.add(featureSet.m_cssRuleFeatureSet);
- m_featureFlags |= featureSet.m_featureFlags;
}
void SelectRuleFeatureSet::clear()
{
m_cssRuleFeatureSet.clear();
- m_featureFlags = 0;
}
void SelectRuleFeatureSet::collectFeaturesFromSelector(const CSSSelector& selector)
« no previous file with comments | « sky/engine/core/dom/shadow/SelectRuleFeatureSet.h ('k') | sky/engine/core/frame/UseCounter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698