| Index: third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.h
|
| diff --git a/third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.h b/third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.h
|
| index 626196fbf0cb81958d428a397a99b15858868107..4a7b55a14b2db547f43e9c2b65908ba9a303993f 100644
|
| --- a/third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.h
|
| +++ b/third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.h
|
| @@ -64,6 +64,11 @@ public:
|
| return wrapUnique(new CachedDocumentParameters(document));
|
| }
|
|
|
| + static std::unique_ptr<CachedDocumentParameters> create()
|
| + {
|
| + return wrapUnique(new CachedDocumentParameters);
|
| + }
|
| +
|
| bool doHtmlPreloadScanning;
|
| bool doDocumentWritePreloadScanning;
|
| Length defaultViewportMinWidth;
|
| @@ -73,6 +78,7 @@ public:
|
|
|
| private:
|
| explicit CachedDocumentParameters(Document*);
|
| + CachedDocumentParameters() = default;
|
| };
|
|
|
| class TokenPreloadScanner {
|
|
|