| Index: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| index 4bd3bdce4c842217a659d4a8bbe73cdeedee763e..21664a24206e3fa3fbf6f9b1166a0561495336f4 100644
|
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| @@ -188,6 +188,7 @@
|
| #include "public/platform/WebSuspendableTask.h"
|
| #include "public/platform/WebURLError.h"
|
| #include "public/platform/WebVector.h"
|
| +#include "public/web/WebAssociatedURLLoaderOptions.h"
|
| #include "public/web/WebAutofillClient.h"
|
| #include "public/web/WebConsoleMessage.h"
|
| #include "public/web/WebDOMEvent.h"
|
| @@ -210,13 +211,13 @@
|
| #include "public/web/WebSerializedScriptValue.h"
|
| #include "public/web/WebTreeScopeType.h"
|
| #include "skia/ext/platform_canvas.h"
|
| -#include "web/AssociatedURLLoader.h"
|
| #include "web/CompositionUnderlineVectorBuilder.h"
|
| #include "web/FindInPageCoordinates.h"
|
| #include "web/RemoteFrameOwner.h"
|
| #include "web/SharedWorkerRepositoryClientImpl.h"
|
| #include "web/SuspendableScriptExecutor.h"
|
| #include "web/TextFinder.h"
|
| +#include "web/WebAssociatedURLLoaderImpl.h"
|
| #include "web/WebDataSourceImpl.h"
|
| #include "web/WebDevToolsAgentImpl.h"
|
| #include "web/WebFrameWidgetImpl.h"
|
| @@ -952,9 +953,9 @@ void WebLocalFrameImpl::dispatchWillSendRequest(WebURLRequest& request) {
|
| request.toMutableResourceRequest());
|
| }
|
|
|
| -WebURLLoader* WebLocalFrameImpl::createAssociatedURLLoader(
|
| - const WebURLLoaderOptions& options) {
|
| - return new AssociatedURLLoader(this, options);
|
| +WebAssociatedURLLoader* WebLocalFrameImpl::createAssociatedURLLoader(
|
| + const WebAssociatedURLLoaderOptions& options) {
|
| + return new WebAssociatedURLLoaderImpl(this, options);
|
| }
|
|
|
| unsigned WebLocalFrameImpl::unloadListenerCount() const {
|
|
|