Index: third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp |
diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp b/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp |
index 2b71a9d66effc6e5b5b039ac9f052a178797cacf..58dc36c7aabf643a473ec5751ae0e6fbaa8bd863 100644 |
--- a/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp |
+++ b/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp |
@@ -1158,7 +1158,7 @@ void GraphicsLayer::didChangeScrollbarsHidden(bool hidden) { |
} |
PaintController& GraphicsLayer::GetPaintController() { |
- RELEASE_ASSERT(DrawsContent()); |
+ CHECK(DrawsContent()); |
if (!paint_controller_) |
paint_controller_ = PaintController::Create(); |
return *paint_controller_; |