| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 "core/html/ImageData.h" | 5 #include "core/html/ImageData.h" |
| 6 | 6 |
| 7 #include "core/dom/ExceptionCode.h" | 7 #include "core/dom/ExceptionCode.h" |
| 8 #include "platform/geometry/IntSize.h" | 8 #include "platform/geometry/IntSize.h" |
| 9 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
| 10 #include "third_party/skia/include/core/SkColorSpaceXform.h" | 10 #include "third_party/skia/include/core/SkColorSpaceXform.h" |
| (...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 } | 526 } |
| 527 EXPECT_TRUE(test_passed); | 527 EXPECT_TRUE(test_passed); |
| 528 } | 528 } |
| 529 } | 529 } |
| 530 | 530 |
| 531 delete[] u8_pixels; | 531 delete[] u8_pixels; |
| 532 delete[] u16_pixels; | 532 delete[] u16_pixels; |
| 533 delete[] f32_pixels; | 533 delete[] f32_pixels; |
| 534 } | 534 } |
| 535 | 535 |
| 536 } // namspace | 536 } // namespace |
| 537 } // namespace blink | 537 } // namespace blink |
| OLD | NEW |