| Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGResourcePaintServer.h
 | 
| diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourcePaintServer.h b/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourcePaintServer.h
 | 
| index ce52519b147d1bd80cc2621aecc73e60f153188a..d9da64f3b93a03e3ba27bc47c096fc04870ea41f 100644
 | 
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourcePaintServer.h
 | 
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourcePaintServer.h
 | 
| @@ -80,7 +80,7 @@ struct SVGPaintDescription {
 | 
|        : resource(nullptr), color(color), isValid(true), hasFallback(false) {}
 | 
|    SVGPaintDescription(LayoutSVGResourcePaintServer* resource)
 | 
|        : resource(resource), isValid(true), hasFallback(false) {
 | 
| -    ASSERT(resource);
 | 
| +    DCHECK(resource);
 | 
|    }
 | 
|    SVGPaintDescription(LayoutSVGResourcePaintServer* resource,
 | 
|                        Color fallbackColor)
 | 
| @@ -88,7 +88,7 @@ struct SVGPaintDescription {
 | 
|          color(fallbackColor),
 | 
|          isValid(true),
 | 
|          hasFallback(true) {
 | 
| -    ASSERT(resource);
 | 
| +    DCHECK(resource);
 | 
|    }
 | 
|  
 | 
|    LayoutSVGResourcePaintServer* resource;
 | 
| 
 |