diff options
Diffstat (limited to 'skia')
-rw-r--r-- | skia/ext/bitmap_platform_device_mac.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/skia/ext/bitmap_platform_device_mac.cc b/skia/ext/bitmap_platform_device_mac.cc index 081986d2d..bb7edc6 100644 --- a/skia/ext/bitmap_platform_device_mac.cc +++ b/skia/ext/bitmap_platform_device_mac.cc @@ -6,7 +6,7 @@ #include <time.h> -#include "base/mac_util.h" +#include "base/mac/mac_util.h" #include "base/ref_counted.h" #include "skia/ext/bitmap_platform_device_data.h" #include "skia/ext/skia_utils_mac.h" @@ -28,7 +28,7 @@ static CGContextRef CGContextForData(void* data, int width, int height) { // recommends these flags for improved CG performance. CGContextRef context = CGBitmapContextCreate(data, width, height, 8, width * 4, - mac_util::GetSystemColorSpace(), + base::mac::GetSystemColorSpace(), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host); #else |