OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Because the unit tests for gfx::Image are spread across multiple | 5 // Because the unit tests for gfx::Image are spread across multiple |
6 // implementation files, this header contains the reusable components. | 6 // implementation files, this header contains the reusable components. |
7 | 7 |
8 #ifndef UI_GFX_IMAGE_IMAGE_UNITTEST_UTIL_H_ | 8 #ifndef UI_GFX_IMAGE_IMAGE_UNITTEST_UTIL_H_ |
9 #define UI_GFX_IMAGE_IMAGE_UNITTEST_UTIL_H_ | 9 #define UI_GFX_IMAGE_IMAGE_UNITTEST_UTIL_H_ |
10 | 10 |
(...skipping 22 matching lines...) Expand all Loading... |
33 | 33 |
34 bool IsEqual(const gfx::Image& image1, const gfx::Image& image2); | 34 bool IsEqual(const gfx::Image& image1, const gfx::Image& image2); |
35 | 35 |
36 bool IsEmpty(const gfx::Image& image); | 36 bool IsEmpty(const gfx::Image& image); |
37 | 37 |
38 PlatformImage CreatePlatformImage(); | 38 PlatformImage CreatePlatformImage(); |
39 | 39 |
40 gfx::Image::RepresentationType GetPlatformRepresentationType(); | 40 gfx::Image::RepresentationType GetPlatformRepresentationType(); |
41 | 41 |
42 PlatformImage ToPlatformType(const gfx::Image& image); | 42 PlatformImage ToPlatformType(const gfx::Image& image); |
| 43 PlatformImage CopyPlatformType(const gfx::Image& image); |
43 | 44 |
44 bool IsPlatformImageValid(PlatformImage image); | 45 bool IsPlatformImageValid(PlatformImage image); |
45 | 46 |
46 bool PlatformImagesEqual(PlatformImage image1, PlatformImage image2); | 47 bool PlatformImagesEqual(PlatformImage image1, PlatformImage image2); |
47 | 48 |
48 } // namespace test | 49 } // namespace test |
49 } // namespace gfx | 50 } // namespace gfx |
50 | 51 |
51 #endif // UI_GFX_IMAGE_IMAGE_UNITTEST_UTIL_H_ | 52 #endif // UI_GFX_IMAGE_IMAGE_UNITTEST_UTIL_H_ |
OLD | NEW |