| Index: skia/ext/skia_utils_mac_unittest.mm
|
| diff --git a/skia/ext/skia_utils_mac_unittest.mm b/skia/ext/skia_utils_mac_unittest.mm
|
| index 353c52a380cf8065aa4887d413cf046ced30847c..51b957eb384145e3abf9be03d0b06ff0741c1643 100644
|
| --- a/skia/ext/skia_utils_mac_unittest.mm
|
| +++ b/skia/ext/skia_utils_mac_unittest.mm
|
| @@ -3,6 +3,8 @@
|
| // found in the LICENSE file.
|
|
|
| #include "skia/ext/skia_utils_mac.mm"
|
| +
|
| +#include "base/mac/scoped_nsobject.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| namespace {
|
| @@ -57,7 +59,7 @@ SkBitmap SkiaUtilsMacTest::CreateSkBitmap(int width, int height,
|
| }
|
|
|
| NSImage* SkiaUtilsMacTest::CreateNSImage(int width, int height, bool isred) {
|
| - scoped_nsobject<NSImage> image(
|
| + base::scoped_nsobject<NSImage> image(
|
| [[NSImage alloc] initWithSize:NSMakeSize(width, height)]);
|
| [image lockFocus];
|
| if (isred)
|
|
|