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

Unified Diff: cc/texture_copier.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/texture_copier.cc
diff --git a/cc/texture_copier.cc b/cc/texture_copier.cc
index f60abf6af330f35dcf5c27a418047b12f0aae293..c14d82c1ae8ef7c599ce795efd7151652c1d5eb1 100644
--- a/cc/texture_copier.cc
+++ b/cc/texture_copier.cc
@@ -17,7 +17,7 @@ AcceleratedTextureCopier::AcceleratedTextureCopier(WebKit::WebGraphicsContext3D*
: m_context(context)
, m_usingBindUniforms(usingBindUniforms)
{
- ASSERT(m_context);
+ CC_DCHECK(m_context);
GLC(m_context, m_fbo = m_context->createFramebuffer());
GLC(m_context, m_positionBuffer = m_context->createBuffer());

Powered by Google App Engine
This is Rietveld 408576698