| Index: third_party/WebKit/Source/core/dom/IconURL.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/IconURL.cpp b/third_party/WebKit/Source/core/dom/IconURL.cpp
|
| index 3e0bb1698b154d052c01c01126a577a02d256f9c..88ac9b4f999afcab91dd850422eb7095557f9d90 100644
|
| --- a/third_party/WebKit/Source/core/dom/IconURL.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/IconURL.cpp
|
| @@ -36,7 +36,7 @@ IconURL IconURL::defaultFavicon(const KURL& documentURL) {
|
| DCHECK(documentURL.protocolIsInHTTPFamily());
|
| KURL url;
|
| bool couldSetProtocol = url.setProtocol(documentURL.protocol());
|
| - ASSERT_UNUSED(couldSetProtocol, couldSetProtocol);
|
| + DCHECK(couldSetProtocol);
|
| url.setHost(documentURL.host());
|
| if (documentURL.hasPort())
|
| url.setPort(documentURL.port());
|
|
|