| Index: third_party/WebKit/Source/platform/geometry/FloatPolygon.h
|
| diff --git a/third_party/WebKit/Source/platform/geometry/FloatPolygon.h b/third_party/WebKit/Source/platform/geometry/FloatPolygon.h
|
| index 71268694123e4c5195e0245ed774d45c8d18d3ef..92898d2bf2e0dc2dd977070136153fe5c61fa212 100644
|
| --- a/third_party/WebKit/Source/platform/geometry/FloatPolygon.h
|
| +++ b/third_party/WebKit/Source/platform/geometry/FloatPolygon.h
|
| @@ -111,12 +111,12 @@ class PLATFORM_EXPORT FloatPolygonEdge final : public VertexPair {
|
|
|
| public:
|
| const FloatPoint& Vertex1() const override {
|
| - ASSERT(polygon_);
|
| + DCHECK(polygon_);
|
| return polygon_->VertexAt(vertex_index1_);
|
| }
|
|
|
| const FloatPoint& Vertex2() const override {
|
| - ASSERT(polygon_);
|
| + DCHECK(polygon_);
|
| return polygon_->VertexAt(vertex_index2_);
|
| }
|
|
|
|
|