| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2008 Apple Computer, 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 void computeIntrinsicDimensions(Length& intrinsicWidth, Length& intrinsicHei
ght, FloatSize& intrinsicRatio) override; | 42 void computeIntrinsicDimensions(Length& intrinsicWidth, Length& intrinsicHei
ght, FloatSize& intrinsicRatio) override; |
| 43 | 43 |
| 44 IntSize size() const override { return m_size; } | 44 IntSize size() const override { return m_size; } |
| 45 | 45 |
| 46 // Assume that generated content has no decoded data we need to worry about | 46 // Assume that generated content has no decoded data we need to worry about |
| 47 void destroyDecodedData(bool) override { } | 47 void destroyDecodedData(bool) override { } |
| 48 | 48 |
| 49 PassRefPtr<SkImage> imageForCurrentFrame() override; | 49 PassRefPtr<SkImage> imageForCurrentFrame() override; |
| 50 | 50 |
| 51 protected: | 51 protected: |
| 52 void drawPattern(GraphicsContext*, const FloatRect&, | 52 void drawPattern(GraphicsContext&, const FloatRect&, |
| 53 const FloatSize&, const FloatPoint&, SkXfermode::Mode, | 53 const FloatSize&, const FloatPoint&, SkXfermode::Mode, |
| 54 const FloatRect&, const FloatSize& repeatSpacing) final; | 54 const FloatRect&, const FloatSize& repeatSpacing) final; |
| 55 | 55 |
| 56 // FIXME: Implement this to be less conservative. | 56 // FIXME: Implement this to be less conservative. |
| 57 bool currentFrameKnownToBeOpaque(MetadataMode = UseCurrentMetadata) override
{ return false; } | 57 bool currentFrameKnownToBeOpaque(MetadataMode = UseCurrentMetadata) override
{ return false; } |
| 58 | 58 |
| 59 GeneratedImage(const IntSize& size) : m_size(size) { } | 59 GeneratedImage(const IntSize& size) : m_size(size) { } |
| 60 | 60 |
| 61 virtual void drawTile(GraphicsContext*, const FloatRect&) = 0; | 61 virtual void drawTile(GraphicsContext&, const FloatRect&) = 0; |
| 62 | 62 |
| 63 IntSize m_size; | 63 IntSize m_size; |
| 64 }; | 64 }; |
| 65 | 65 |
| 66 } // namespace blink | 66 } // namespace blink |
| 67 | 67 |
| 68 #endif | 68 #endif |
| OLD | NEW |