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

Side by Side Diff: skia/ext/platform_device_mac.h

Issue 11357: Move the platform files form port to skia for Mac only. Hopefully this won't ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years 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
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 PlatformDeviceMac_h 5 #ifndef SKIA_EXT_PLATFORM_DEVICE_MAC_H_
6 #define PlatformDeviceMac_h 6 #define SKIA_EXT_PLATFORM_DEVICE_MAC_H_
7 7
8 #import <ApplicationServices/ApplicationServices.h> 8 #import <ApplicationServices/ApplicationServices.h>
9 #include "SkDevice.h" 9 #include "SkDevice.h"
10 10
11 class SkMatrix; 11 class SkMatrix;
12 class SkPath; 12 class SkPath;
13 class SkRegion; 13 class SkRegion;
14 14
15 namespace gfx { 15 namespace gfx {
16 16
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 // adjustor for the alpha value of each pixel. 75 // adjustor for the alpha value of each pixel.
76 virtual void processPixels(int x, 76 virtual void processPixels(int x,
77 int y, 77 int y,
78 int width, 78 int width,
79 int height, 79 int height,
80 adjustAlpha adjustor) = 0; 80 adjustAlpha adjustor) = 0;
81 }; 81 };
82 82
83 } // namespace gfx 83 } // namespace gfx
84 84
85 #endif // PlatformDeviceMac_h 85 #endif // SKIA_EXT_PLATFORM_DEVICE_MAC_H_
86 86
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698