Index: Source/core/css/CSSParser.h |
diff --git a/Source/core/css/CSSParser.h b/Source/core/css/CSSParser.h |
index b29d5a6f9341d1ab75ce01ce8691a3c89c865bcf..98570857f1703f4f3f777ec80c15cef28c79fb75 100644 |
--- a/Source/core/css/CSSParser.h |
+++ b/Source/core/css/CSSParser.h |
@@ -101,7 +101,7 @@ public: |
PassRefPtr<CSSPrimitiveValue> parseValidPrimitive(CSSValueID ident, CSSParserValue*); |
bool parseDeclaration(MutableStylePropertySet*, const String&, SourceDataHandler*, StyleSheetContents* contextStyleSheet); |
static PassRefPtr<ImmutableStylePropertySet> parseInlineStyleDeclaration(const String&, Element*); |
- PassOwnPtr<MediaQuery> parseMediaQuery(const String&); |
+ PassRefPtr<MediaQuerySet> parseMediaQueryList(const String&); |
void addPropertyWithPrefixingVariant(CSSPropertyID, PassRefPtr<CSSValue>, bool important, bool implicit = false); |
void addProperty(CSSPropertyID, PassRefPtr<CSSValue>, bool important, bool implicit = false); |
@@ -356,7 +356,7 @@ public: |
StyleSheetContents* m_styleSheet; |
RefPtr<StyleRuleBase> m_rule; |
RefPtr<StyleKeyframe> m_keyframe; |
- OwnPtr<MediaQuery> m_mediaQuery; |
+ RefPtr<MediaQuerySet> m_mediaList; |
OwnPtr<CSSParserValueList> m_valueList; |
bool m_supportsCondition; |