| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 PassRefPtr<SkImage> imageForCurrentFrame() override; | 70 PassRefPtr<SkImage> imageForCurrentFrame() override; |
| 71 | 71 |
| 72 // Returns the SVG image document's frame. | 72 // Returns the SVG image document's frame. |
| 73 FrameView* frameView() const; | 73 FrameView* frameView() const; |
| 74 | 74 |
| 75 // Does the SVG image/document contain any animations? | 75 // Does the SVG image/document contain any animations? |
| 76 bool hasAnimations() const; | 76 bool hasAnimations() const; |
| 77 | 77 |
| 78 void updateUseCounters(Document&) const; | 78 void updateUseCounters(Document&) const; |
| 79 | 79 |
| 80 DisplayItemClient displayItemClient() const { return toDisplayItemClient(thi
s); } | 80 DisplayItemClient displayItemClient() const { return DisplayItemClient(this)
; } |
| 81 String debugName() const { return "SVGImage"; } | 81 String debugName() const { return "SVGImage"; } |
| 82 | 82 |
| 83 private: | 83 private: |
| 84 friend class AXLayoutObject; | 84 friend class AXLayoutObject; |
| 85 friend class SVGImageChromeClient; | 85 friend class SVGImageChromeClient; |
| 86 friend class SVGImageForContainer; | 86 friend class SVGImageForContainer; |
| 87 | 87 |
| 88 ~SVGImage() override; | 88 ~SVGImage() override; |
| 89 | 89 |
| 90 String filenameExtension() const override; | 90 String filenameExtension() const override; |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 m_image->setImageObserver(m_observer); | 133 m_image->setImageObserver(m_observer); |
| 134 } | 134 } |
| 135 private: | 135 private: |
| 136 Image* m_image; | 136 Image* m_image; |
| 137 ImageObserver* m_observer; | 137 ImageObserver* m_observer; |
| 138 }; | 138 }; |
| 139 | 139 |
| 140 } | 140 } |
| 141 | 141 |
| 142 #endif // SVGImage_h | 142 #endif // SVGImage_h |
| OLD | NEW |