| 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 9887dd87987013fc175e43088aac32a9681f2f31..a7a6d632e2e512218b4ce17c7d2c68d94b264b5b 100644
|
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| @@ -853,8 +853,7 @@ void WebLocalFrameImpl::reloadWithOverrideURL(const WebURL& overrideUrl,
|
| // TODO(clamy): Remove this function once RenderFrame calls load for all
|
| // requests.
|
| DCHECK(frame());
|
| - DCHECK(loadType == WebFrameLoadType::Reload ||
|
| - loadType == WebFrameLoadType::ReloadBypassingCache);
|
| + DCHECK(isReloadLoadType(static_cast<FrameLoadType>(loadType)));
|
| WebURLRequest request = requestForReload(loadType, overrideUrl);
|
| if (request.isNull())
|
| return;
|
|
|