| Index: third_party/WebKit/Source/core/css/parser/CSSTokenizerInputStream.h
|
| diff --git a/third_party/WebKit/Source/core/css/parser/CSSTokenizerInputStream.h b/third_party/WebKit/Source/core/css/parser/CSSTokenizerInputStream.h
|
| index b8a2f480df9071103c9bfae8978b5d7d2d3cce6c..be79cc381a17d249434763cc40b42e0eaa80b9c0 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSTokenizerInputStream.h
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSTokenizerInputStream.h
|
| @@ -5,12 +5,11 @@
|
| #ifndef CSSTokenizerInputStream_h
|
| #define CSSTokenizerInputStream_h
|
|
|
| +#include "wtf/text/StringView.h"
|
| #include "wtf/text/WTFString.h"
|
|
|
| namespace blink {
|
|
|
| -struct CSSParserString;
|
| -
|
| class CSSTokenizerInputStream {
|
| WTF_MAKE_NONCOPYABLE(CSSTokenizerInputStream);
|
| USING_FAST_MALLOC(CSSTokenizerInputStream);
|
| @@ -46,7 +45,7 @@ public:
|
| }
|
|
|
| unsigned offset() const { return std::min(m_offset, m_stringLength); }
|
| - CSSParserString rangeAsCSSParserString(unsigned start, unsigned length) const;
|
| + StringView rangeAt(unsigned start, unsigned length) const;
|
|
|
| private:
|
| size_t m_offset;
|
|
|