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

Unified Diff: cc/checkerboard_draw_quad.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/cc.gyp ('k') | cc/completion_event.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/checkerboard_draw_quad.cc
diff --git a/cc/checkerboard_draw_quad.cc b/cc/checkerboard_draw_quad.cc
index cba8813b3b1a647ddda6b951ba0b31a56d2dd539..f1b34a3de842359f624309a5b6aa7f67024fc49a 100644
--- a/cc/checkerboard_draw_quad.cc
+++ b/cc/checkerboard_draw_quad.cc
@@ -6,8 +6,6 @@
#include "CCCheckerboardDrawQuad.h"
-#include "base/logging.h"
-
namespace cc {
scoped_ptr<CCCheckerboardDrawQuad> CCCheckerboardDrawQuad::create(const CCSharedQuadState* sharedQuadState, const IntRect& quadRect, SkColor color)
@@ -23,7 +21,7 @@ CCCheckerboardDrawQuad::CCCheckerboardDrawQuad(const CCSharedQuadState* sharedQu
const CCCheckerboardDrawQuad* CCCheckerboardDrawQuad::materialCast(const CCDrawQuad* quad)
{
- DCHECK(quad->material() == CCDrawQuad::Checkerboard);
+ ASSERT(quad->material() == CCDrawQuad::Checkerboard);
return static_cast<const CCCheckerboardDrawQuad*>(quad);
}
« no previous file with comments | « cc/cc.gyp ('k') | cc/completion_event.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698