summaryrefslogtreecommitdiffstats
path: root/content/browser/web_contents/debug_urls.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-14 02:47:56 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-14 02:47:56 +0000
commit46ed086c4b827b050b32a123d008bf1004cd1dc8 (patch)
tree9ff943b2668dcc5751b7c5482d8e230705bf7ec7 /content/browser/web_contents/debug_urls.cc
parentbb25a73494faa944d3c60a02a4e5a2d6b25dc05f (diff)
downloadchromium_src-46ed086c4b827b050b32a123d008bf1004cd1dc8.zip
chromium_src-46ed086c4b827b050b32a123d008bf1004cd1dc8.tar.gz
chromium_src-46ed086c4b827b050b32a123d008bf1004cd1dc8.tar.bz2
content: Move more constants into content namespace.
R=jam@chromium.org Review URL: https://chromiumcodereview.appspot.com/13513004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194115 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/web_contents/debug_urls.cc')
-rw-r--r--content/browser/web_contents/debug_urls.cc2
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;