| Index: ash/wm/root_window_event_filter.cc
|
| diff --git a/ash/wm/root_window_event_filter.cc b/ash/wm/root_window_event_filter.cc
|
| index 1be0a8ac765e0a47151ef383d557bb7467606a7d..9d0d98973e57f47610013428d9da63d2a2796fa3 100644
|
| --- a/ash/wm/root_window_event_filter.cc
|
| +++ b/ash/wm/root_window_event_filter.cc
|
| @@ -63,7 +63,7 @@ void RootWindowEventFilter::LockCursor() {
|
|
|
| void RootWindowEventFilter::UnlockCursor() {
|
| cursor_lock_count_--;
|
| - DCHECK_GE(0, cursor_lock_count_);
|
| + DCHECK_GE(cursor_lock_count_, 0);
|
| if (cursor_lock_count_ == 0) {
|
| if (did_cursor_change_) {
|
| did_cursor_change_ = false;
|
|
|