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

Unified Diff: third_party/WebKit/Source/core/css/RuleSet.h

Issue 2528633003: Move MediaQueryResults to RuleFeatureSet. (Closed)
Patch Set: Removed members. Created 4 years, 1 month 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 | « third_party/WebKit/Source/core/css/RuleFeature.cpp ('k') | third_party/WebKit/Source/core/css/RuleSet.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/RuleSet.h
diff --git a/third_party/WebKit/Source/core/css/RuleSet.h b/third_party/WebKit/Source/core/css/RuleSet.h
index 60be52cfdabe5f6f03952ec2ec4d3b3c83c7cdce..64274306cf0017fc23ac5ab2eff46d5edbec20fc 100644
--- a/third_party/WebKit/Source/core/css/RuleSet.h
+++ b/third_party/WebKit/Source/core/css/RuleSet.h
@@ -219,12 +219,6 @@ class CORE_EXPORT RuleSet : public GarbageCollectedFinalized<RuleSet> {
const HeapVector<MinimalRuleData>& slottedPseudoElementRules() const {
return m_slottedPseudoElementRules;
}
- const MediaQueryResultList& viewportDependentMediaQueryResults() const {
- return m_viewportDependentMediaQueryResults;
- }
- const MediaQueryResultList& deviceDependentMediaQueryResults() const {
- return m_deviceDependentMediaQueryResults;
- }
unsigned ruleCount() const { return m_ruleCount; }
@@ -315,9 +309,6 @@ class CORE_EXPORT RuleSet : public GarbageCollectedFinalized<RuleSet> {
HeapVector<MinimalRuleData> m_contentPseudoElementRules;
HeapVector<MinimalRuleData> m_slottedPseudoElementRules;
- MediaQueryResultList m_viewportDependentMediaQueryResults;
- MediaQueryResultList m_deviceDependentMediaQueryResults;
-
unsigned m_ruleCount;
Member<PendingRuleMaps> m_pendingRules;
« no previous file with comments | « third_party/WebKit/Source/core/css/RuleFeature.cpp ('k') | third_party/WebKit/Source/core/css/RuleSet.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698