| Index: third_party/WebKit/Source/core/xml/XSLImportRule.cpp
|
| diff --git a/third_party/WebKit/Source/core/xml/XSLImportRule.cpp b/third_party/WebKit/Source/core/xml/XSLImportRule.cpp
|
| index 6d240ca5d5bd748ffd346eb2bbf5ddfd0f80c55e..4fa8687675d656e91c925deecf275c5c0181d2dd 100644
|
| --- a/third_party/WebKit/Source/core/xml/XSLImportRule.cpp
|
| +++ b/third_party/WebKit/Source/core/xml/XSLImportRule.cpp
|
| @@ -100,7 +100,7 @@ void XSLImportRule::loadSheet()
|
| ResourceLoaderOptions fetchOptions(ResourceFetcher::defaultResourceOptions());
|
| FetchRequest request(ResourceRequest(ownerDocument->completeURL(absHref)), FetchInitiatorTypeNames::xml, fetchOptions);
|
| request.setOriginRestriction(FetchRequest::RestrictToSameOrigin);
|
| - RefPtrWillBeRawPtr<XSLStyleSheetResource> resource = XSLStyleSheetResource::fetchSynchronously(request, ownerDocument->fetcher());
|
| + RawPtr<XSLStyleSheetResource> resource = XSLStyleSheetResource::fetchSynchronously(request, ownerDocument->fetcher());
|
| if (!resource || !resource->sheet())
|
| return;
|
|
|
|
|