| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013, Google Inc. All rights reserved. | 2 * Copyright (c) 2013, Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 #include "core/html/HTMLCanvasElement.h" | 37 #include "core/html/HTMLCanvasElement.h" |
| 38 #include "core/html/HTMLImageElement.h" | 38 #include "core/html/HTMLImageElement.h" |
| 39 #include "core/html/HTMLVideoElement.h" | 39 #include "core/html/HTMLVideoElement.h" |
| 40 #include "platform/graphics/StaticBitmapImage.h" | 40 #include "platform/graphics/StaticBitmapImage.h" |
| 41 #include "platform/heap/Handle.h" | 41 #include "platform/heap/Handle.h" |
| 42 #include "platform/network/ResourceRequest.h" | 42 #include "platform/network/ResourceRequest.h" |
| 43 #include "testing/gtest/include/gtest/gtest.h" | 43 #include "testing/gtest/include/gtest/gtest.h" |
| 44 #include "third_party/skia/include/core/SkCanvas.h" | 44 #include "third_party/skia/include/core/SkCanvas.h" |
| 45 #include "third_party/skia/include/core/SkImage.h" | 45 #include "third_party/skia/include/core/SkImage.h" |
| 46 #include "third_party/skia/include/core/SkSurface.h" | 46 #include "third_party/skia/include/core/SkSurface.h" |
| 47 #include "wtf/OwnPtr.h" | |
| 48 | 47 |
| 49 namespace blink { | 48 namespace blink { |
| 50 | 49 |
| 51 class ImageBitmapTest : public ::testing::Test { | 50 class ImageBitmapTest : public ::testing::Test { |
| 52 protected: | 51 protected: |
| 53 virtual void SetUp() | 52 virtual void SetUp() |
| 54 { | 53 { |
| 55 sk_sp<SkSurface> surface = SkSurface::MakeRasterN32Premul(10, 10); | 54 sk_sp<SkSurface> surface = SkSurface::MakeRasterN32Premul(10, 10); |
| 56 surface->getCanvas()->clear(0xFFFFFFFF); | 55 surface->getCanvas()->clear(0xFFFFFFFF); |
| 57 m_image = adoptRef(surface->newImageSnapshot()); | 56 m_image = adoptRef(surface->newImageSnapshot()); |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 ASSERT_NE(imageBitmap->bitmapImage()->imageForCurrentFrame(), newImageRe
source->getImage()->imageForCurrentFrame()); | 136 ASSERT_NE(imageBitmap->bitmapImage()->imageForCurrentFrame(), newImageRe
source->getImage()->imageForCurrentFrame()); |
| 138 SkImage* image1 = imageBitmap->bitmapImage()->imageForCurrentFrame().get
(); | 137 SkImage* image1 = imageBitmap->bitmapImage()->imageForCurrentFrame().get
(); |
| 139 ASSERT_NE(image1, nullptr); | 138 ASSERT_NE(image1, nullptr); |
| 140 SkImage* image2 = newImageResource->getImage()->imageForCurrentFrame().g
et(); | 139 SkImage* image2 = newImageResource->getImage()->imageForCurrentFrame().g
et(); |
| 141 ASSERT_NE(image2, nullptr); | 140 ASSERT_NE(image2, nullptr); |
| 142 ASSERT_NE(image1, image2); | 141 ASSERT_NE(image1, image2); |
| 143 } | 142 } |
| 144 } | 143 } |
| 145 | 144 |
| 146 } // namespace blink | 145 } // namespace blink |
| OLD | NEW |