| Index: chrome/browser/ui/tests/ui_gfx_image_unittest.mm
|
| diff --git a/chrome/browser/ui/tests/ui_gfx_image_unittest.mm b/chrome/browser/ui/tests/ui_gfx_image_unittest.mm
|
| index 19fcea0663c6b545bd4bd39d0a96f5f72bd80979..448fc257eb7770e1f8983a45510ea078df4adf4d 100644
|
| --- a/chrome/browser/ui/tests/ui_gfx_image_unittest.mm
|
| +++ b/chrome/browser/ui/tests/ui_gfx_image_unittest.mm
|
| @@ -4,6 +4,7 @@
|
|
|
| #import <AppKit/AppKit.h>
|
|
|
| +#import "base/mac/mac_util.h"
|
| #include "base/memory/scoped_nsobject.h"
|
| #import "chrome/browser/ui/cocoa/cocoa_test_helper.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| @@ -17,6 +18,10 @@ class UiGfxImageTest : public CocoaTest {
|
| };
|
|
|
| TEST_F(UiGfxImageTest, CheckColor) {
|
| + // TODO(kbr): re-enable: http://crbug.com/222296
|
| + if (base::mac::IsOSMountainLionOrLater())
|
| + return;
|
| +
|
| gfx::Image image = gfx::Image::CreateFrom1xBitmap(
|
| gfx::test::CreateBitmap(25, 25));
|
| NSImage* ns_image = image.ToNSImage();
|
|
|