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

Unified Diff: Source/core/svg/SVGSVGElement.idl

Issue 901623002: Deprecate SVGSVGElement.forceRedraw, suspendRedraw, unsuspendRedraw[All] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« Source/core/frame/UseCounter.cpp ('K') | « Source/core/frame/UseCounter.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGSVGElement.idl
diff --git a/Source/core/svg/SVGSVGElement.idl b/Source/core/svg/SVGSVGElement.idl
index 1b699145555492d7456f36076b3e3bad46d875fa..f57b4f2f763e05e290a87c1266dcef2a99eb75a3 100644
--- a/Source/core/svg/SVGSVGElement.idl
+++ b/Source/core/svg/SVGSVGElement.idl
@@ -42,10 +42,10 @@
attribute float currentScale;
[ImplementedAs=currentTranslateFromJavascript] readonly attribute SVGPoint currentTranslate;
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] unsigned long suspendRedraw(unsigned long maxWaitMilliseconds);
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] void unsuspendRedraw(unsigned long suspendHandleId);
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] void unsuspendRedrawAll();
- [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] void forceRedraw();
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM, DeprecateAs=SVGSVGElementSuspendRedraw] unsigned long suspendRedraw(unsigned long maxWaitMilliseconds);
philipj_slow 2015/02/04 15:45:24 Have you looked at the generated code to see if bo
Erik Dahlström (inactive) 2015/02/05 08:43:00 I have not, but I have verified that it works thro
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM, DeprecateAs=SVGSVGElementUnsuspendRedraw] void unsuspendRedraw(unsigned long suspendHandleId);
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM, DeprecateAs=SVGSVGElementUnsuspendRedrawAll] void unsuspendRedrawAll();
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM, DeprecateAs=SVGSVGElementForceRedraw] void forceRedraw();
void pauseAnimations();
void unpauseAnimations();
boolean animationsPaused();
« Source/core/frame/UseCounter.cpp ('K') | « Source/core/frame/UseCounter.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698