summaryrefslogtreecommitdiffstats
path: root/cc/timer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'cc/timer.cc')
-rw-r--r--cc/timer.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/cc/timer.cc b/cc/timer.cc
index 089c12b..b5b9206 100644
--- a/cc/timer.cc
+++ b/cc/timer.cc
@@ -7,6 +7,7 @@
#include "CCTimer.h"
#include "base/compiler_specific.h"
+#include "base/logging.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();
}