Chromium Code Reviews| 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 f737fb84d53c28ce5c8e8f8d5b93e215e1aa8482..a34ed75affc024c2255d0b41d08a33fb1de123ff 100644 |
| --- a/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp |
| +++ b/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp |
| @@ -1153,7 +1153,7 @@ void GraphicsLayer::didChangeScrollbarsHidden(bool hidden) { |
| } |
| PaintController& GraphicsLayer::getPaintController() { |
| - RELEASE_ASSERT(drawsContent()); |
| + CHECK(drawsContent()); |
| if (!m_paintController) |
| m_paintController = PaintController::create(); |
| return *m_paintController; |