| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "platform/graphics/paint/DrawingDisplayItem.h" | 5 #include "platform/graphics/paint/DrawingDisplayItem.h" |
| 6 | 6 |
| 7 #include "platform/graphics/GraphicsContext.h" | 7 #include "platform/graphics/GraphicsContext.h" |
| 8 #include "public/platform/WebDisplayItemList.h" | 8 #include "public/platform/WebDisplayItemList.h" |
| 9 | 9 |
| 10 #if ENABLE(ASSERT) | 10 #if ENABLE(ASSERT) |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 canvas.drawPicture(picture.get(), nullptr, &diffPaint); | 106 canvas.drawPicture(picture.get(), nullptr, &diffPaint); |
| 107 return bitmapIsAllZero(bitmap); | 107 return bitmapIsAllZero(bitmap); |
| 108 } | 108 } |
| 109 default: | 109 default: |
| 110 ASSERT_NOT_REACHED(); | 110 ASSERT_NOT_REACHED(); |
| 111 } | 111 } |
| 112 return false; | 112 return false; |
| 113 } | 113 } |
| 114 #endif // ENABLE(ASSERT) | 114 #endif // ENABLE(ASSERT) |
| 115 | 115 |
| 116 } | 116 } // namespace blink |
| OLD | NEW |