| Index: third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
|
| index 1743ea5afd355906c6c56ec478292bd55b6ad62f..1467b5e21a30116c17e58f8afa993dbf8e9f526f 100644
|
| --- a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
|
| @@ -726,11 +726,11 @@ void FrameLoaderClientImpl::selectorMatchChanged(const Vector<String>& addedSele
|
| client->didMatchCSS(m_webFrame, WebVector<WebString>(addedSelectors), WebVector<WebString>(removedSelectors));
|
| }
|
|
|
| -DocumentLoader* FrameLoaderClientImpl::createDocumentLoader(LocalFrame* frame, const ResourceRequest& request, const SubstituteData& data)
|
| +DocumentLoader* FrameLoaderClientImpl::createDocumentLoader(LocalFrame* frame, const ResourceRequest& request, const SubstituteData& data, int initiator)
|
| {
|
| WebDataSourceImpl* ds = WebDataSourceImpl::create(frame, request, data);
|
| if (m_webFrame->client())
|
| - m_webFrame->client()->didCreateDataSource(m_webFrame, ds);
|
| + m_webFrame->client()->didCreateDataSource(m_webFrame, ds, initiator);
|
| return ds;
|
| }
|
|
|
|
|