OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006 Eric Seidel <eric@webkit.org> | 2 * Copyright (C) 2006 Eric Seidel <eric@webkit.org> |
3 * Copyright (C) 2009 Apple Inc. All rights reserved. | 3 * Copyright (C) 2009 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 | 83 |
84 private: | 84 private: |
85 friend class AXLayoutObject; | 85 friend class AXLayoutObject; |
86 friend class SVGImageChromeClient; | 86 friend class SVGImageChromeClient; |
87 friend class SVGImageForContainer; | 87 friend class SVGImageForContainer; |
88 | 88 |
89 ~SVGImage() override; | 89 ~SVGImage() override; |
90 | 90 |
91 String filenameExtension() const override; | 91 String filenameExtension() const override; |
92 | 92 |
93 void setContainerSize(const IntSize&); | |
94 IntSize containerSize() const; | 93 IntSize containerSize() const; |
95 bool usesContainerSize() const override { return true; } | 94 bool usesContainerSize() const override { return true; } |
96 void computeIntrinsicDimensions(Length& intrinsicWidth, Length& intrinsicHei
ght, FloatSize& intrinsicRatio) override; | 95 void computeIntrinsicDimensions(Length& intrinsicWidth, Length& intrinsicHei
ght, FloatSize& intrinsicRatio) override; |
97 | 96 |
98 bool dataChanged(bool allDataReceived) override; | 97 bool dataChanged(bool allDataReceived) override; |
99 | 98 |
100 // FIXME: SVGImages are underreporting decoded sizes and will be unable | 99 // FIXME: SVGImages are underreporting decoded sizes and will be unable |
101 // to prune because these functions are not implemented yet. | 100 // to prune because these functions are not implemented yet. |
102 void destroyDecodedData(bool) override { } | 101 void destroyDecodedData(bool) override { } |
103 | 102 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 m_image->setImageObserver(m_observer); | 135 m_image->setImageObserver(m_observer); |
137 } | 136 } |
138 private: | 137 private: |
139 Image* m_image; | 138 Image* m_image; |
140 ImageObserver* m_observer; | 139 ImageObserver* m_observer; |
141 }; | 140 }; |
142 | 141 |
143 } // namespace blink | 142 } // namespace blink |
144 | 143 |
145 #endif // SVGImage_h | 144 #endif // SVGImage_h |
OLD | NEW |