| Index: webkit/glue/plugins/pepper_plugin_instance.cc
|
| ===================================================================
|
| --- webkit/glue/plugins/pepper_plugin_instance.cc (revision 62861)
|
| +++ webkit/glue/plugins/pepper_plugin_instance.cc (working copy)
|
| @@ -8,7 +8,7 @@
|
| #include "base/metrics/histogram.h"
|
| #if defined(OS_MACOSX)
|
| #include "base/mac_util.h"
|
| -#include "base/scoped_cftyperef.h"
|
| +#include "base/mac/scoped_cftyperef.h"
|
| #endif
|
| #include "base/scoped_ptr.h"
|
| #include "base/utf_string_conversions.h"
|
| @@ -1027,11 +1027,11 @@
|
| int canvas_height) {
|
| SkAutoLockPixels lock(bitmap);
|
| DCHECK(bitmap.getConfig() == SkBitmap::kARGB_8888_Config);
|
| - scoped_cftyperef<CGDataProviderRef> data_provider(
|
| + base::mac::ScopedCFTypeRef<CGDataProviderRef> data_provider(
|
| CGDataProviderCreateWithData(
|
| NULL, bitmap.getAddr32(0, 0),
|
| bitmap.rowBytes() * bitmap.height(), NULL));
|
| - scoped_cftyperef<CGImageRef> image(
|
| + base::mac::ScopedCFTypeRef<CGImageRef> image(
|
| CGImageCreate(
|
| bitmap.width(), bitmap.height(),
|
| 8, 32, bitmap.rowBytes(),
|
|
|