diff options
Diffstat (limited to 'content/browser/web_contents/debug_urls.cc')
-rw-r--r-- | content/browser/web_contents/debug_urls.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/web_contents/debug_urls.cc b/content/browser/web_contents/debug_urls.cc index f62f0b3..c321b055 100644 --- a/content/browser/web_contents/debug_urls.cc +++ b/content/browser/web_contents/debug_urls.cc @@ -42,7 +42,7 @@ bool HandleDebugURL(const GURL& url, PageTransition transition) { if (!(transition & PAGE_TRANSITION_FROM_ADDRESS_BAR)) return false; - if (url.host() == chrome::kChromeUIBrowserCrashHost) { + if (url.host() == kChromeUIBrowserCrashHost) { // Induce an intentional crash in the browser process. CHECK(false); return true; |