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 #ifndef UI_GFX_SKBITMAP_OPERATIONS_H_ | 5 #ifndef UI_GFX_SKBITMAP_OPERATIONS_H_ |
6 #define UI_GFX_SKBITMAP_OPERATIONS_H_ | 6 #define UI_GFX_SKBITMAP_OPERATIONS_H_ |
7 | 7 |
8 #include "base/gtest_prod_util.h" | 8 #include "base/gtest_prod_util.h" |
9 #include "ui/gfx/color_utils.h" | 9 #include "ui/gfx/color_utils.h" |
10 #include "ui/gfx/gfx_export.h" | 10 #include "ui/gfx/gfx_export.h" |
11 #include "ui/gfx/shadow_value.h" | 11 #include "ui/gfx/shadow_value.h" |
12 | 12 |
13 namespace gfx { | |
14 class Point; | |
15 class Size; | |
16 } | |
17 | |
18 class SkBitmap; | 13 class SkBitmap; |
19 | 14 |
20 class GFX_EXPORT SkBitmapOperations { | 15 class GFX_EXPORT SkBitmapOperations { |
21 public: | 16 public: |
22 // Enum for use in rotating images (must be in 90 degree increments), | 17 // Enum for use in rotating images (must be in 90 degree increments), |
23 // see: Rotate. | 18 // see: Rotate. |
24 enum RotationAmount { | 19 enum RotationAmount { |
25 ROTATION_90_CW, | 20 ROTATION_90_CW, |
26 ROTATION_180_CW, | 21 ROTATION_180_CW, |
27 ROTATION_270_CW, | 22 ROTATION_270_CW, |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 static SkBitmap Rotate(const SkBitmap& source, RotationAmount rotation); | 110 static SkBitmap Rotate(const SkBitmap& source, RotationAmount rotation); |
116 | 111 |
117 private: | 112 private: |
118 SkBitmapOperations(); // Class for scoping only. | 113 SkBitmapOperations(); // Class for scoping only. |
119 | 114 |
120 FRIEND_TEST_ALL_PREFIXES(SkBitmapOperationsTest, DownsampleByTwo); | 115 FRIEND_TEST_ALL_PREFIXES(SkBitmapOperationsTest, DownsampleByTwo); |
121 FRIEND_TEST_ALL_PREFIXES(SkBitmapOperationsTest, DownsampleByTwoSmall); | 116 FRIEND_TEST_ALL_PREFIXES(SkBitmapOperationsTest, DownsampleByTwoSmall); |
122 }; | 117 }; |
123 | 118 |
124 #endif // UI_GFX_SKBITMAP_OPERATIONS_H_ | 119 #endif // UI_GFX_SKBITMAP_OPERATIONS_H_ |
OLD | NEW |