summaryrefslogtreecommitdiffstats
path: root/ash
diff options
context:
space:
mode:
authoroshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-27 01:16:00 +0000
committeroshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-27 01:16:00 +0000
commitbd4814bdfc08e98d3ea833367e16d1fb4665c9f3 (patch)
treee17dfe8cc467d8f0dd23106f31dfc88aea0b3174 /ash
parent96ea228ed88492c273aa234d1aa8dc630cd7a935 (diff)
downloadchromium_src-bd4814bdfc08e98d3ea833367e16d1fb4665c9f3.zip
chromium_src-bd4814bdfc08e98d3ea833367e16d1fb4665c9f3.tar.gz
chromium_src-bd4814bdfc08e98d3ea833367e16d1fb4665c9f3.tar.bz2
DCHECK->CHECK to catch error in the field.
TBR=jamescook@chromium.org BUG=165214 TEST=none Review URL: https://chromiumcodereview.appspot.com/11678002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@174651 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash')
-rw-r--r--ash/shell.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ash/shell.cc b/ash/shell.cc
index bd4cd0e..97b1002 100644
--- a/ash/shell.cc
+++ b/ash/shell.cc
@@ -587,8 +587,8 @@ void Shell::ShowContextMenu(const gfx::Point& location_in_screen) {
// return the primary root). Investigate why/how this is
// happening. crbug.com/165214.
internal::RootWindowController* rwc = GetRootWindowController(root);
- DCHECK(rwc) << "root=" << root
- << ", location:" << location_in_screen.ToString();
+ CHECK(rwc) << "root=" << root
+ << ", location:" << location_in_screen.ToString();
if (rwc)
rwc->ShowContextMenu(location_in_screen);
}