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

Unified Diff: cc/CCScheduler.cpp

Issue 11048044: cc: Switch to Chromium DCHECKs and LOGs (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: 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/CCScheduler.cpp
diff --git a/cc/CCScheduler.cpp b/cc/CCScheduler.cpp
index 869cd19210f2fa4159e8d1e059b264ac5737b0c8..6215a3ae833f6293cd30be13f86136e774338388 100644
--- a/cc/CCScheduler.cpp
+++ b/cc/CCScheduler.cpp
@@ -16,9 +16,9 @@ CCScheduler::CCScheduler(CCSchedulerClient* client, scoped_ptr<CCFrameRateContro
, m_frameRateController(frameRateController.Pass())
, m_insideProcessScheduledActions(false)
{
- ASSERT(m_client);
+ DCHECK(m_client);
m_frameRateController->setClient(this);
- ASSERT(!m_stateMachine.vsyncCallbackNeeded());
+ DCHECK(!m_stateMachine.vsyncCallbackNeeded());
}
CCScheduler::~CCScheduler()

Powered by Google App Engine
This is Rietveld 408576698