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

Unified Diff: cc/scheduler.cc

Issue 11196014: Revert "cc: Switch to Chromium DCHECKs LOGs" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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
« no previous file with comments | « cc/resource_provider_unittest.cc ('k') | cc/scheduler_state_machine.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/scheduler.cc
diff --git a/cc/scheduler.cc b/cc/scheduler.cc
index eb24306bcc3be192f44e59a11c7075bb3e0f466a..869cd19210f2fa4159e8d1e059b264ac5737b0c8 100644
--- a/cc/scheduler.cc
+++ b/cc/scheduler.cc
@@ -7,8 +7,7 @@
#include "CCScheduler.h"
#include "TraceEvent.h"
-#include "base/auto_reset.h"
-#include "base/logging.h"
+#include <base/auto_reset.h>
namespace cc {
@@ -17,9 +16,9 @@ CCScheduler::CCScheduler(CCSchedulerClient* client, scoped_ptr<CCFrameRateContro
, m_frameRateController(frameRateController.Pass())
, m_insideProcessScheduledActions(false)
{
- DCHECK(m_client);
+ ASSERT(m_client);
m_frameRateController->setClient(this);
- DCHECK(!m_stateMachine.vsyncCallbackNeeded());
+ ASSERT(!m_stateMachine.vsyncCallbackNeeded());
}
CCScheduler::~CCScheduler()
« no previous file with comments | « cc/resource_provider_unittest.cc ('k') | cc/scheduler_state_machine.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698