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

Unified Diff: cc/scheduler_unittest.cc

Issue 11048044: cc: Switch to Chromium DCHECKs and LOGs (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebase 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 dc218b9fcc81bf1cce1a2286684115a23c0bf19c..3cba5b6ce5509753ba12ef4dff7c78ae125d66a8 100644
--- a/cc/scheduler_unittest.cc
+++ b/cc/scheduler_unittest.cc
@@ -6,9 +6,10 @@
#include "CCScheduler.h"
-#include "CCSchedulerTestCommon.h"
+#include "cc/dcheck.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
+#include "CCSchedulerTestCommon.h"
#include <wtf/OwnPtr.h>
using namespace cc;
@@ -223,7 +224,7 @@ public:
virtual CCScheduledActionDrawAndSwapResult scheduledActionDrawAndSwapForced() OVERRIDE
{
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return CCScheduledActionDrawAndSwapResult(true, true);
}
@@ -325,7 +326,7 @@ public:
virtual CCScheduledActionDrawAndSwapResult scheduledActionDrawAndSwapForced() OVERRIDE
{
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return CCScheduledActionDrawAndSwapResult(true, true);
}

Powered by Google App Engine
This is Rietveld 408576698