| Index: ios/chrome/browser/browser_about_rewriter.cc
|
| diff --git a/ios/chrome/browser/browser_about_rewriter.cc b/ios/chrome/browser/browser_about_rewriter.cc
|
| index 0920c682a06b9a792aa344edaf0d88ec913c51c7..caf8df4bcb5a8ff312b3edd16d41db9d75cd07db 100644
|
| --- a/ios/chrome/browser/browser_about_rewriter.cc
|
| +++ b/ios/chrome/browser/browser_about_rewriter.cc
|
| @@ -32,8 +32,7 @@ bool WillHandleWebBrowserAboutURL(GURL* url, web::BrowserState* browser_state) {
|
| *url = url_formatter::FixupURL(url->possibly_invalid_spec(), std::string());
|
|
|
| // Check that about: URLs are fixed up to chrome: by url_formatter::FixupURL.
|
| - DCHECK((*url == GURL(url::kAboutBlankURL)) ||
|
| - !url->SchemeIs(url::kAboutScheme));
|
| + DCHECK((*url == url::kAboutBlankURL) || !url->SchemeIs(url::kAboutScheme));
|
|
|
| // url_formatter::FixupURL translates about:foo into chrome://foo/.
|
| if (!url->SchemeIs(kChromeUIScheme))
|
|
|