summaryrefslogtreecommitdiffstats
path: root/WebCore/css/CSSParserValues.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/css/CSSParserValues.h')
-rw-r--r--WebCore/css/CSSParserValues.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/WebCore/css/CSSParserValues.h b/WebCore/css/CSSParserValues.h
index 8644d9b..993ae28 100644
--- a/WebCore/css/CSSParserValues.h
+++ b/WebCore/css/CSSParserValues.h
@@ -55,7 +55,6 @@ struct CSSParserValue {
};
int unit;
- bool isVariable() const;
PassRefPtr<CSSValue> createCSSValue();
};
@@ -64,7 +63,6 @@ class CSSParserValueList : public FastAllocBase {
public:
CSSParserValueList()
: m_current(0)
- , m_variablesCount(0)
{
}
~CSSParserValueList();
@@ -80,11 +78,8 @@ public:
void clear() { m_values.clear(); }
- bool containsVariables() const { return m_variablesCount; }
-
private:
unsigned m_current;
- unsigned m_variablesCount;
Vector<CSSParserValue, 4> m_values;
};