OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2012 Apple 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 * | 7 * |
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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 // | 94 // |
95 // TODO(Oilpan): move (SVG)Image to the Oilpan heap, and avoid | 95 // TODO(Oilpan): move (SVG)Image to the Oilpan heap, and avoid |
96 // this explicit lifetime check. | 96 // this explicit lifetime check. |
97 if (ThreadHeap::willObjectBeLazilySwept(m_image->getImageObserver())) | 97 if (ThreadHeap::willObjectBeLazilySwept(m_image->getImageObserver())) |
98 return; | 98 return; |
99 | 99 |
100 // serviceScriptedAnimations runs requestAnimationFrame callbacks, but SVG | 100 // serviceScriptedAnimations runs requestAnimationFrame callbacks, but SVG |
101 // images can't have any so we assert there's no script. | 101 // images can't have any so we assert there's no script. |
102 ScriptForbiddenScope forbidScript; | 102 ScriptForbiddenScope forbidScript; |
103 | 103 |
104 // The calls below may trigger GCs, so set up the required persistent | 104 // The call below may trigger GCs, so set up the required reference |
105 // reference on the ImageResource which owns this SVGImage. By transitivity, | 105 // to the ImageObserver (an ImageResource) which owns this SVGImage. |
106 // that will keep this SVGImageChromeClient object alive. | 106 // By transitivity, that will keep this SVGImageChromeClient object alive. |
107 Persistent<ImageObserver> protect(m_image->getImageObserver()); | 107 // |
108 m_image->frameView()->page()->animator().serviceScriptedAnimations(monotonic
allyIncreasingTime()); | 108 // The update scope will additionally prevent the GCs from indirectly |
| 109 // triggering animations reset over m_image should the ImageResource become |
| 110 // otherwise unreferenced. |
| 111 { |
| 112 SVGImage::UpdateAnimationScope scope(m_image); |
| 113 m_image->frameView()->page()->animator().serviceScriptedAnimations(monot
onicallyIncreasingTime()); |
| 114 } |
109 m_image->frameView()->updateAllLifecyclePhases(); | 115 m_image->frameView()->updateAllLifecyclePhases(); |
110 } | 116 } |
111 | 117 |
112 } // namespace blink | 118 } // namespace blink |
OLD | NEW |