| Index: third_party/WebKit/Source/core/html/parser/CSSPreloadScanner.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/parser/CSSPreloadScanner.cpp b/third_party/WebKit/Source/core/html/parser/CSSPreloadScanner.cpp
|
| index 15a5aaf1d36714052c7ccaf8db2548737a75454c..939aa3836a892d4162a09e8d86ce1e8046e7d0b7 100644
|
| --- a/third_party/WebKit/Source/core/html/parser/CSSPreloadScanner.cpp
|
| +++ b/third_party/WebKit/Source/core/html/parser/CSSPreloadScanner.cpp
|
| @@ -222,7 +222,7 @@ void CSSPreloadScanner::emitRule(const SegmentedString& source)
|
| TextPosition position = TextPosition(source.currentLine(), source.currentColumn());
|
| OwnPtr<PreloadRequest> request = PreloadRequest::create(FetchInitiatorTypeNames::css, position, url, *m_predictedBaseElementURL, Resource::CSSStyleSheet, m_referrerPolicy);
|
| // FIXME: Should this be including the charset in the preload request?
|
| - m_requests->append(request.release());
|
| + m_requests->append(std::move(request));
|
| }
|
| m_state = Initial;
|
| } else if (equalIgnoringCase(m_rule, "charset"))
|
|
|