Index: content/browser/browser_url_handler_impl.cc |
diff --git a/content/browser/browser_url_handler_impl.cc b/content/browser/browser_url_handler_impl.cc |
index 4eaf1ec3d69dc9a70bc95c0a86ce250c05a269a8..27f2e4b65eb7bacf23d62df9532c4155ed85a11b 100644 |
--- a/content/browser/browser_url_handler_impl.cc |
+++ b/content/browser/browser_url_handler_impl.cc |
@@ -87,10 +87,7 @@ static bool DebugURLHandler(GURL* url, BrowserContext* browser_context) { |
} |
// Circumvent processing URLs that the renderer process will handle. |
- return *url == GURL(kChromeUICrashURL) || |
- *url == GURL(kChromeUIHangURL) || |
- *url == GURL(kChromeUIKillURL) || |
- *url == GURL(kChromeUIShorthangURL); |
+ return IsRendererDebugURL(*url); |
} |
// static |