| Index: third_party/WebKit/Source/core/fetch/CSSStyleSheetResource.h
|
| diff --git a/third_party/WebKit/Source/core/fetch/CSSStyleSheetResource.h b/third_party/WebKit/Source/core/fetch/CSSStyleSheetResource.h
|
| index b90b5447c43fa65e9e91301fb431955da94e5e67..46888b5368c023d4ac7eaaf7ab802d501715c2b3 100644
|
| --- a/third_party/WebKit/Source/core/fetch/CSSStyleSheetResource.h
|
| +++ b/third_party/WebKit/Source/core/fetch/CSSStyleSheetResource.h
|
| @@ -55,6 +55,8 @@ public:
|
| StyleSheetContents* restoreParsedStyleSheet(const CSSParserContext&);
|
| void saveParsedStyleSheet(StyleSheetContents*);
|
|
|
| + void appendData(const char* data, size_t length) override;
|
| +
|
| private:
|
| class CSSStyleSheetResourceFactory : public ResourceFactory {
|
| public:
|
| @@ -79,6 +81,8 @@ private:
|
| String m_decodedSheetText;
|
|
|
| Member<StyleSheetContents> m_parsedStyleSheetCache;
|
| +
|
| + bool m_didNotifyFirstData;
|
| };
|
|
|
| DEFINE_RESOURCE_TYPE_CASTS(CSSStyleSheet);
|
|
|