Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(272)

Side by Side Diff: third_party/WebKit/Source/core/svg/graphics/SVGImageChromeClient.cpp

Issue 2005693002: Delay SVGImage animations reset while being updated. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698