| Index: third_party/WebKit/Source/core/css/parser/CSSTokenizer.h
|
| diff --git a/third_party/WebKit/Source/core/css/parser/CSSTokenizer.h b/third_party/WebKit/Source/core/css/parser/CSSTokenizer.h
|
| index a8c2e91e44a28cfb984553719f8e21cda4198dbb..802dddaa3f7e4a1e07ccf5035b15464e090f79fa 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSTokenizer.h
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSTokenizer.h
|
| @@ -33,6 +33,11 @@ public:
|
| CSSParserTokenRange tokenRange();
|
| unsigned tokenCount();
|
|
|
| + const Vector<String>& stringPool()
|
| + {
|
| + return m_stringPool;
|
| + }
|
| +
|
| private:
|
| void storeString(const String& string) { m_stringPool.append(string); }
|
| Vector<CSSParserToken, 32> m_tokens;
|
|
|