| 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 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 Loading... |
| 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 |
| OLD | NEW |