OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 APP_ICON_UTIL_H_ | 5 #ifndef APP_GFX_ICON_UTIL_H_ |
6 #define APP_ICON_UTIL_H_ | 6 #define APP_GFX_ICON_UTIL_H_ |
7 | 7 |
8 #include <windows.h> | 8 #include <windows.h> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 | 12 |
13 namespace gfx { | 13 namespace gfx { |
14 class Size; | 14 class Size; |
15 } | 15 } |
16 class SkBitmap; | 16 class SkBitmap; |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 static void ComputeBitmapSizeComponents(const SkBitmap& bitmap, | 183 static void ComputeBitmapSizeComponents(const SkBitmap& bitmap, |
184 int* xor_mask_size, | 184 int* xor_mask_size, |
185 int* and_mask_size, | 185 int* and_mask_size, |
186 int* bytes_in_resource); | 186 int* bytes_in_resource); |
187 | 187 |
188 // Prevent clients from instantiating objects of that class by declaring the | 188 // Prevent clients from instantiating objects of that class by declaring the |
189 // ctor/dtor as private. | 189 // ctor/dtor as private. |
190 DISALLOW_IMPLICIT_CONSTRUCTORS(IconUtil); | 190 DISALLOW_IMPLICIT_CONSTRUCTORS(IconUtil); |
191 }; | 191 }; |
192 | 192 |
193 #endif // APP_ICON_UTIL_H_ | 193 #endif // APP_GFX_ICON_UTIL_H_ |
OLD | NEW |