| 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 2195c5c8ef70a62859cfcc14ad60891bc7aaa8bd..8a14f23b59452affb7d0b413ad10c0994c8c3cfd 100644
|
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| @@ -120,6 +120,7 @@
|
| #include "core/editing/markers/DocumentMarkerController.h"
|
| #include "core/editing/serializers/Serialization.h"
|
| #include "core/editing/spellcheck/SpellChecker.h"
|
| +#include "core/exported/WebAssociatedURLLoaderImpl.h"
|
| #include "core/frame/FrameView.h"
|
| #include "core/frame/LocalDOMWindow.h"
|
| #include "core/frame/PageScaleConstraintsSet.h"
|
| @@ -225,7 +226,6 @@
|
| #include "web/SuspendableScriptExecutor.h"
|
| #include "web/TextCheckerClientImpl.h"
|
| #include "web/TextFinder.h"
|
| -#include "web/WebAssociatedURLLoaderImpl.h"
|
| #include "web/WebDataSourceImpl.h"
|
| #include "web/WebDevToolsAgentImpl.h"
|
| #include "web/WebFrameWidgetImpl.h"
|
| @@ -965,7 +965,7 @@ void WebLocalFrameImpl::SetReferrerForRequest(WebURLRequest& request,
|
|
|
| WebAssociatedURLLoader* WebLocalFrameImpl::CreateAssociatedURLLoader(
|
| const WebAssociatedURLLoaderOptions& options) {
|
| - return new WebAssociatedURLLoaderImpl(this, options);
|
| + return new WebAssociatedURLLoaderImpl(GetFrame()->GetDocument(), options);
|
| }
|
|
|
| unsigned WebLocalFrameImpl::UnloadListenerCount() const {
|
|
|