| Index: cc/CCLayerQuad.cpp
|
| diff --git a/cc/CCLayerQuad.cpp b/cc/CCLayerQuad.cpp
|
| index 96426225d3e6fef2143bc931e57b2b9ed60ea094..878f9ec5df3d71c04c8a206c6c0ff4ea05b48a4f 100644
|
| --- a/cc/CCLayerQuad.cpp
|
| +++ b/cc/CCLayerQuad.cpp
|
| @@ -9,11 +9,13 @@
|
|
|
| #include "CCLayerQuad.h"
|
|
|
| +#include "base/logging.h"
|
| +
|
| namespace cc {
|
|
|
| CCLayerQuad::Edge::Edge(const FloatPoint& p, const FloatPoint& q)
|
| {
|
| - ASSERT(p != q);
|
| + DCHECK(p != q);
|
|
|
| FloatPoint tangent(p.y() - q.y(), q.x() - p.x());
|
| float cross2 = p.x() * q.y() - q.x() * p.y();
|
|
|