| 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 d5a9d0075ebb663a8f244b2a54ab0d13527f73ac..8433cb9a4e81c5490c7d1ead5b86c4cc9231d049 100644
|
| --- a/third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.h
|
| +++ b/third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.h
|
| @@ -58,11 +58,11 @@ struct CORE_EXPORT CachedDocumentParameters {
|
|
|
| public:
|
| static std::unique_ptr<CachedDocumentParameters> create(Document* document) {
|
| - return wrapUnique(new CachedDocumentParameters(document));
|
| + return WTF::wrapUnique(new CachedDocumentParameters(document));
|
| }
|
|
|
| static std::unique_ptr<CachedDocumentParameters> create() {
|
| - return wrapUnique(new CachedDocumentParameters);
|
| + return WTF::wrapUnique(new CachedDocumentParameters);
|
| }
|
|
|
| bool doHtmlPreloadScanning;
|
| @@ -178,9 +178,9 @@ class CORE_EXPORT HTMLPreloadScanner {
|
| const KURL& documentURL,
|
| std::unique_ptr<CachedDocumentParameters> documentParameters,
|
| const MediaValuesCached::MediaValuesCachedData& mediaValuesCachedData) {
|
| - return wrapUnique(new HTMLPreloadScanner(options, documentURL,
|
| - std::move(documentParameters),
|
| - mediaValuesCachedData));
|
| + return WTF::wrapUnique(new HTMLPreloadScanner(options, documentURL,
|
| + std::move(documentParameters),
|
| + mediaValuesCachedData));
|
| }
|
|
|
| ~HTMLPreloadScanner();
|
|
|