| Index: third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp b/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp
|
| index b22754b27491a1e6c2d8f54b9b1b795e70db6251..3523eaabaad91238feb28bc19f6266bf9e83b948 100644
|
| --- a/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp
|
| @@ -133,7 +133,7 @@ void RemoteFrameClientImpl::navigate(const ResourceRequest& request, bool should
|
|
|
| void RemoteFrameClientImpl::reload(FrameLoadType loadType, ClientRedirectPolicy clientRedirectPolicy)
|
| {
|
| - ASSERT(loadType == FrameLoadTypeReload || loadType == FrameLoadTypeReloadBypassingCache);
|
| + DCHECK(isReloadLoadType(loadType));
|
| if (m_webFrame->client())
|
| m_webFrame->client()->reload(static_cast<WebFrameLoadType>(loadType), static_cast<WebClientRedirectPolicy>(clientRedirectPolicy));
|
| }
|
|
|