| Index: base/synchronization/condition_variable_win.cc
|
| ===================================================================
|
| --- base/synchronization/condition_variable_win.cc (revision 106858)
|
| +++ base/synchronization/condition_variable_win.cc (working copy)
|
| @@ -117,7 +117,7 @@
|
| cv_event = new Event();
|
| cv_event->InitListElement();
|
| allocation_counter_++;
|
| - CHECK(cv_event->handle());
|
| + DCHECK(cv_event->handle());
|
| } else {
|
| cv_event = recycling_list_.PopFront();
|
| recycling_list_size_--;
|
| @@ -193,7 +193,7 @@
|
| void ConditionVariable::Event::InitListElement() {
|
| DCHECK(!handle_);
|
| handle_ = CreateEvent(NULL, false, false, NULL);
|
| - CHECK(handle_);
|
| + DCHECK(handle_);
|
| }
|
|
|
| // Methods for use on lists.
|
|
|