Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(285)

Side by Side Diff: ui/gfx/skbitmap_operations.h

Issue 2484863005: ui: Cleanup class/struct forward declarations (Closed)
Patch Set: Fix another conflict Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/gfx/platform_font_linux.h ('k') | ui/gfx/text_elider.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « ui/gfx/platform_font_linux.h ('k') | ui/gfx/text_elider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698