| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 2 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
| 3 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. All rights reserved. |
| 4 * Copyright (C) 2008-2009 Torch Mobile, Inc. | 4 * Copyright (C) 2008-2009 Torch Mobile, Inc. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 22 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 22 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| 23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 */ | 26 */ |
| 27 | 27 |
| 28 #ifndef BitmapImage_h | 28 #ifndef BitmapImage_h |
| 29 #define BitmapImage_h | 29 #define BitmapImage_h |
| 30 | 30 |
| 31 #include <memory> |
| 31 #include "platform/Timer.h" | 32 #include "platform/Timer.h" |
| 32 #include "platform/geometry/IntSize.h" | 33 #include "platform/geometry/IntSize.h" |
| 33 #include "platform/graphics/Color.h" | 34 #include "platform/graphics/Color.h" |
| 34 #include "platform/graphics/FrameData.h" | 35 #include "platform/graphics/FrameData.h" |
| 35 #include "platform/graphics/Image.h" | 36 #include "platform/graphics/Image.h" |
| 36 #include "platform/graphics/ImageAnimationPolicy.h" | 37 #include "platform/graphics/ImageAnimationPolicy.h" |
| 37 #include "platform/graphics/ImageOrientation.h" | 38 #include "platform/graphics/ImageOrientation.h" |
| 38 #include "platform/graphics/ImageSource.h" | 39 #include "platform/graphics/ImageSource.h" |
| 39 #include "platform/image-decoders/ImageAnimation.h" | 40 #include "platform/image-decoders/ImageAnimation.h" |
| 40 #include "third_party/skia/include/core/SkRefCnt.h" | 41 #include "third_party/skia/include/core/SkRefCnt.h" |
| 41 #include "wtf/Forward.h" | 42 #include "wtf/Forward.h" |
| 42 #include <memory> | |
| 43 | 43 |
| 44 namespace blink { | 44 namespace blink { |
| 45 | 45 |
| 46 class PLATFORM_EXPORT BitmapImage final : public Image { | 46 class PLATFORM_EXPORT BitmapImage final : public Image { |
| 47 friend class BitmapImageTest; | 47 friend class BitmapImageTest; |
| 48 friend class CrossfadeGeneratedImage; | 48 friend class CrossfadeGeneratedImage; |
| 49 friend class GeneratedImage; | 49 friend class GeneratedImage; |
| 50 friend class GradientGeneratedImage; | 50 friend class GradientGeneratedImage; |
| 51 friend class GraphicsContext; | 51 friend class GraphicsContext; |
| 52 | 52 |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 bool m_sizeAvailable : 1; // Whether we can obtain the size of the first | 218 bool m_sizeAvailable : 1; // Whether we can obtain the size of the first |
| 219 // image frame from ImageIO yet. | 219 // image frame from ImageIO yet. |
| 220 mutable bool m_haveFrameCount : 1; | 220 mutable bool m_haveFrameCount : 1; |
| 221 }; | 221 }; |
| 222 | 222 |
| 223 DEFINE_IMAGE_TYPE_CASTS(BitmapImage); | 223 DEFINE_IMAGE_TYPE_CASTS(BitmapImage); |
| 224 | 224 |
| 225 } // namespace blink | 225 } // namespace blink |
| 226 | 226 |
| 227 #endif | 227 #endif |
| OLD | NEW |