Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5400)

Unified Diff: cc/scheduler_unittest.cc

Issue 11192030: cc: Switch to Chromium DCHECKs LOGs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: dcheck and ndebug Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: cc/scheduler_unittest.cc
diff --git a/cc/scheduler_unittest.cc b/cc/scheduler_unittest.cc
index 104453df9da72c80197a93e1b1a5aa0277a0187d..d912abbb624697996fd40117fbf1639da6b70002 100644
--- a/cc/scheduler_unittest.cc
+++ b/cc/scheduler_unittest.cc
@@ -6,6 +6,7 @@
#include "CCScheduler.h"
+#include "base/logging.h"
#include "cc/test/scheduler_test_common.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -222,7 +223,7 @@ public:
virtual CCScheduledActionDrawAndSwapResult scheduledActionDrawAndSwapForced() OVERRIDE
{
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return CCScheduledActionDrawAndSwapResult(true, true);
}
@@ -324,7 +325,7 @@ public:
virtual CCScheduledActionDrawAndSwapResult scheduledActionDrawAndSwapForced() OVERRIDE
{
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return CCScheduledActionDrawAndSwapResult(true, true);
}

Powered by Google App Engine
This is Rietveld 408576698