| Index: Source/core/loader/ImageLoader.h
|
| diff --git a/Source/core/loader/ImageLoader.h b/Source/core/loader/ImageLoader.h
|
| index 84678d1554079a851b738a99ca513791191861ac..90d96d8c783e3536334d3b5bd47689cb249ff908 100644
|
| --- a/Source/core/loader/ImageLoader.h
|
| +++ b/Source/core/loader/ImageLoader.h
|
| @@ -37,6 +37,7 @@ namespace blink {
|
| class IncrementLoadEventDelayCount;
|
| class FetchRequest;
|
| class Document;
|
| +class WebURLRequest;
|
|
|
| class CORE_EXPORT ImageLoaderClient : public WillBeGarbageCollectedMixin {
|
| public:
|
| @@ -86,7 +87,7 @@ public:
|
| DoNotBypassMainWorldCSP
|
| };
|
|
|
| - void updateFromElement(UpdateFromElementBehavior = UpdateNormal, ReferrerPolicy = ReferrerPolicyDefault);
|
| + void updateFromElement(WebURLRequest::ExtraData*, UpdateFromElementBehavior = UpdateNormal, ReferrerPolicy = ReferrerPolicyDefault);
|
|
|
| void elementDidMoveToNewDocument();
|
|
|
| @@ -122,7 +123,7 @@ private:
|
| class Task;
|
|
|
| // Called from the task or from updateFromElement to initiate the load.
|
| - void doUpdateFromElement(BypassMainWorldBehavior, UpdateFromElementBehavior, ReferrerPolicy = ReferrerPolicyDefault);
|
| + void doUpdateFromElement(WebURLRequest::ExtraData*, BypassMainWorldBehavior, UpdateFromElementBehavior, ReferrerPolicy = ReferrerPolicyDefault);
|
|
|
| virtual void dispatchLoadEvent() = 0;
|
| virtual void noImageResourceToLoad() { }
|
|
|