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

Side by Side Diff: gfx/icon_util.h

Issue 915002: Create a toplevel gfx/ dir and seed it with icon_util.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 months 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 | Annotate | Revision Log
« no previous file with comments | « gfx/gfx.gyp ('k') | gfx/icon_util.cc » ('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) 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_GFX_ICON_UTIL_H_ 5 #ifndef GFX_ICON_UTIL_H_
6 #define APP_GFX_ICON_UTIL_H_ 6 #define 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 static void ComputeBitmapSizeComponents(const SkBitmap& bitmap, 186 static void ComputeBitmapSizeComponents(const SkBitmap& bitmap,
187 int* xor_mask_size, 187 int* xor_mask_size,
188 int* and_mask_size, 188 int* and_mask_size,
189 int* bytes_in_resource); 189 int* bytes_in_resource);
190 190
191 // Prevent clients from instantiating objects of that class by declaring the 191 // Prevent clients from instantiating objects of that class by declaring the
192 // ctor/dtor as private. 192 // ctor/dtor as private.
193 DISALLOW_IMPLICIT_CONSTRUCTORS(IconUtil); 193 DISALLOW_IMPLICIT_CONSTRUCTORS(IconUtil);
194 }; 194 };
195 195
196 #endif // APP_GFX_ICON_UTIL_H_ 196 #endif // GFX_ICON_UTIL_H_
OLDNEW
« no previous file with comments | « gfx/gfx.gyp ('k') | gfx/icon_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698