| 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 |
| 11 #include "ui/gfx/image/image.h" | 11 #include "ui/gfx/image/image.h" |
| 12 #include "third_party/skia/include/core/SkColor.h" |
| 12 | 13 |
| 13 namespace gfx { | 14 namespace gfx { |
| 14 namespace test { | 15 namespace test { |
| 15 | 16 |
| 16 #if defined(OS_MACOSX) | 17 #if defined(OS_MACOSX) |
| 17 typedef NSImage* PlatformImage; | 18 typedef NSImage* PlatformImage; |
| 18 #elif defined(TOOLKIT_GTK) | 19 #elif defined(TOOLKIT_GTK) |
| 19 typedef GdkPixbuf* PlatformImage; | 20 typedef GdkPixbuf* PlatformImage; |
| 20 #else | 21 #else |
| 21 typedef const SkBitmap PlatformImage; | 22 typedef const SkBitmap PlatformImage; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 33 | 34 |
| 34 bool IsEqual(const gfx::Image& image1, const gfx::Image& image2); | 35 bool IsEqual(const gfx::Image& image1, const gfx::Image& image2); |
| 35 | 36 |
| 36 bool IsEmpty(const gfx::Image& image); | 37 bool IsEmpty(const gfx::Image& image); |
| 37 | 38 |
| 38 PlatformImage CreatePlatformImage(); | 39 PlatformImage CreatePlatformImage(); |
| 39 | 40 |
| 40 gfx::Image::RepresentationType GetPlatformRepresentationType(); | 41 gfx::Image::RepresentationType GetPlatformRepresentationType(); |
| 41 | 42 |
| 42 PlatformImage ToPlatformType(const gfx::Image& image); | 43 PlatformImage ToPlatformType(const gfx::Image& image); |
| 44 PlatformImage CopyPlatformType(const gfx::Image& image); |
| 45 |
| 46 SkColor GetPlatformImageColor(PlatformImage image); |
| 47 void CheckColor(SkColor color, bool is_red); |
| 43 | 48 |
| 44 bool IsPlatformImageValid(PlatformImage image); | 49 bool IsPlatformImageValid(PlatformImage image); |
| 45 | 50 |
| 46 bool PlatformImagesEqual(PlatformImage image1, PlatformImage image2); | 51 bool PlatformImagesEqual(PlatformImage image1, PlatformImage image2); |
| 47 | 52 |
| 48 } // namespace test | 53 } // namespace test |
| 49 } // namespace gfx | 54 } // namespace gfx |
| 50 | 55 |
| 51 #endif // UI_GFX_IMAGE_IMAGE_UNITTEST_UTIL_H_ | 56 #endif // UI_GFX_IMAGE_IMAGE_UNITTEST_UTIL_H_ |
| OLD | NEW |