| Index: Source/web/FrameLoaderClientImpl.cpp
|
| diff --git a/Source/web/FrameLoaderClientImpl.cpp b/Source/web/FrameLoaderClientImpl.cpp
|
| index 11e2f02e088fa0b902f5e0601ec9eedc6e59df91..198f6757509700b68abf6ac969fa97de9cafc076 100644
|
| --- a/Source/web/FrameLoaderClientImpl.cpp
|
| +++ b/Source/web/FrameLoaderClientImpl.cpp
|
| @@ -439,18 +439,18 @@ void FrameLoaderClientImpl::dispatchDidCommitLoad(HistoryItem* item, HistoryComm
|
| }
|
|
|
| void FrameLoaderClientImpl::dispatchDidFailProvisionalLoad(
|
| - const ResourceError& error)
|
| + const ResourceError& error, HistoryCommitType commitType)
|
| {
|
| OwnPtr<WebPluginLoadObserver> observer = pluginLoadObserver(m_webFrame->frame()->loader().provisionalDocumentLoader());
|
| - m_webFrame->didFail(error, true);
|
| + m_webFrame->didFail(error, true, commitType);
|
| if (observer)
|
| observer->didFailLoading(error);
|
| }
|
|
|
| -void FrameLoaderClientImpl::dispatchDidFailLoad(const ResourceError& error)
|
| +void FrameLoaderClientImpl::dispatchDidFailLoad(const ResourceError& error, HistoryCommitType commitType)
|
| {
|
| OwnPtr<WebPluginLoadObserver> observer = pluginLoadObserver(m_webFrame->frame()->loader().documentLoader());
|
| - m_webFrame->didFail(error, false);
|
| + m_webFrame->didFail(error, false, commitType);
|
| if (observer)
|
| observer->didFailLoading(error);
|
|
|
|
|