diff options
Diffstat (limited to 'ash/shell.cc')
-rw-r--r-- | ash/shell.cc | 4 |
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); } |