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

Side by Side Diff: app/gfx/color_utils.h

Issue 65012: Move skia to DEPS, and put it in third_party. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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 | « app/gfx/chrome_font_skia.cc ('k') | app/gfx/color_utils.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_COLOR_UTILS_H_ 5 #ifndef APP_GFX_COLOR_UTILS_H_
6 #define APP_GFX_COLOR_UTILS_H_ 6 #define APP_GFX_COLOR_UTILS_H_
7 7
8 #include "skia/include/SkColor.h" 8 #include "third_party/skia/include/core/SkColor.h"
9 9
10 class SkBitmap; 10 class SkBitmap;
11 11
12 namespace color_utils { 12 namespace color_utils {
13 13
14 // Represents set of CIE XYZ tristimulus values. 14 // Represents set of CIE XYZ tristimulus values.
15 struct CIE_XYZ { 15 struct CIE_XYZ {
16 double X; 16 double X;
17 double Y; // luminance 17 double Y; // luminance
18 double Z; 18 double Z;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 54
55 // Create a color from a base color and a specific alpha value. 55 // Create a color from a base color and a specific alpha value.
56 SkColor SetColorAlpha(SkColor c, SkAlpha alpha); 56 SkColor SetColorAlpha(SkColor c, SkAlpha alpha);
57 57
58 // Gets a Windows system color as a SkColor 58 // Gets a Windows system color as a SkColor
59 SkColor GetSysSkColor(int which); 59 SkColor GetSysSkColor(int which);
60 60
61 } // namespace color_utils 61 } // namespace color_utils
62 62
63 #endif // #ifndef APP_GFX_COLOR_UTILS_H_ 63 #endif // #ifndef APP_GFX_COLOR_UTILS_H_
OLDNEW
« no previous file with comments | « app/gfx/chrome_font_skia.cc ('k') | app/gfx/color_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698