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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 }; | 105 }; |
106 | 106 |
107 DEFINE_IMAGE_TYPE_CASTS(SVGImage); | 107 DEFINE_IMAGE_TYPE_CASTS(SVGImage); |
108 | 108 |
109 class ImageObserverDisabler { | 109 class ImageObserverDisabler { |
110 WTF_MAKE_NONCOPYABLE(ImageObserverDisabler); | 110 WTF_MAKE_NONCOPYABLE(ImageObserverDisabler); |
111 public: | 111 public: |
112 ImageObserverDisabler(Image* image) | 112 ImageObserverDisabler(Image* image) |
113 : m_image(image) | 113 : m_image(image) |
114 { | 114 { |
115 ASSERT(m_image->imageObserver()); | |
116 m_observer = m_image->imageObserver(); | 115 m_observer = m_image->imageObserver(); |
117 m_image->setImageObserver(0); | 116 m_image->setImageObserver(0); |
118 } | 117 } |
119 | 118 |
120 ~ImageObserverDisabler() | 119 ~ImageObserverDisabler() |
121 { | 120 { |
122 m_image->setImageObserver(m_observer); | 121 m_image->setImageObserver(m_observer); |
123 } | 122 } |
124 private: | 123 private: |
125 Image* m_image; | 124 Image* m_image; |
126 ImageObserver* m_observer; | 125 ImageObserver* m_observer; |
127 }; | 126 }; |
128 | 127 |
129 } | 128 } |
130 | 129 |
131 #endif // SVGImage_h | 130 #endif // SVGImage_h |
OLD | NEW |