Chromium Code Reviews| Index: cc/timer.cc |
| diff --git a/cc/timer.cc b/cc/timer.cc |
| index 089c12b19b52cd876abb582f0be2d73d6bbefebe..578ed1930e8ca9793e4695cbaaf29571dccaf37f 100644 |
| --- a/cc/timer.cc |
| +++ b/cc/timer.cc |
| @@ -7,6 +7,7 @@ |
| #include "CCTimer.h" |
| #include "base/compiler_specific.h" |
| +#include "cc/dcheck.h" |
| #include "CCThread.h" |
| namespace cc { |
| @@ -24,7 +25,7 @@ public: |
| if (!m_timer) |
| return; |
| - ASSERT(m_timer->m_task == this); |
| + DCHECK(m_timer->m_task == this); |
| m_timer->stop(); |
| } |