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

Side by Side Diff: Source/core/svg/SVGSVGElement.h

Issue 868603003: [svg2] Drop suspendRedraw, unsuspendRedraw[All] and forceRedraw. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Rob Buis <buis@kde.org>
4 * Copyright (C) 2014 Google, Inc. 4 * Copyright (C) 2014 Google, Inc.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 79
80 SMILTimeContainer* timeContainer() const { return m_timeContainer.get(); } 80 SMILTimeContainer* timeContainer() const { return m_timeContainer.get(); }
81 81
82 void pauseAnimations(); 82 void pauseAnimations();
83 void unpauseAnimations(); 83 void unpauseAnimations();
84 bool animationsPaused() const; 84 bool animationsPaused() const;
85 85
86 float getCurrentTime() const; 86 float getCurrentTime() const;
87 void setCurrentTime(float seconds); 87 void setCurrentTime(float seconds);
88 88
89 // Stubs for the deprecated 'redraw' interface.
90 unsigned suspendRedraw(unsigned) { return 1; }
91 void unsuspendRedraw(unsigned) { }
92 void unsuspendRedrawAll() { }
93 void forceRedraw() { }
94
95 PassRefPtrWillBeRawPtr<StaticNodeList> getIntersectionList(PassRefPtrWillBeR awPtr<SVGRectTearOff>, SVGElement* referenceElement) const; 89 PassRefPtrWillBeRawPtr<StaticNodeList> getIntersectionList(PassRefPtrWillBeR awPtr<SVGRectTearOff>, SVGElement* referenceElement) const;
96 PassRefPtrWillBeRawPtr<StaticNodeList> getEnclosureList(PassRefPtrWillBeRawP tr<SVGRectTearOff>, SVGElement* referenceElement) const; 90 PassRefPtrWillBeRawPtr<StaticNodeList> getEnclosureList(PassRefPtrWillBeRawP tr<SVGRectTearOff>, SVGElement* referenceElement) const;
97 bool checkIntersection(SVGElement*, PassRefPtrWillBeRawPtr<SVGRectTearOff>) const; 91 bool checkIntersection(SVGElement*, PassRefPtrWillBeRawPtr<SVGRectTearOff>) const;
98 bool checkEnclosure(SVGElement*, PassRefPtrWillBeRawPtr<SVGRectTearOff>) con st; 92 bool checkEnclosure(SVGElement*, PassRefPtrWillBeRawPtr<SVGRectTearOff>) con st;
99 void deselectAll(); 93 void deselectAll();
100 94
101 static PassRefPtrWillBeRawPtr<SVGNumberTearOff> createSVGNumber(); 95 static PassRefPtrWillBeRawPtr<SVGNumberTearOff> createSVGNumber();
102 static PassRefPtrWillBeRawPtr<SVGLengthTearOff> createSVGLength(); 96 static PassRefPtrWillBeRawPtr<SVGLengthTearOff> createSVGLength();
103 static PassRefPtrWillBeRawPtr<SVGAngleTearOff> createSVGAngle(); 97 static PassRefPtrWillBeRawPtr<SVGAngleTearOff> createSVGAngle();
104 static PassRefPtrWillBeRawPtr<SVGPointTearOff> createSVGPoint(); 98 static PassRefPtrWillBeRawPtr<SVGPointTearOff> createSVGPoint();
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 RefPtrWillBeMember<SMILTimeContainer> m_timeContainer; 158 RefPtrWillBeMember<SMILTimeContainer> m_timeContainer;
165 RefPtrWillBeMember<SVGPoint> m_translation; 159 RefPtrWillBeMember<SVGPoint> m_translation;
166 RefPtrWillBeMember<SVGViewSpec> m_viewSpec; 160 RefPtrWillBeMember<SVGViewSpec> m_viewSpec;
167 161
168 friend class SVGCurrentTranslateTearOff; 162 friend class SVGCurrentTranslateTearOff;
169 }; 163 };
170 164
171 } // namespace blink 165 } // namespace blink
172 166
173 #endif // SVGSVGElement_h 167 #endif // SVGSVGElement_h
OLDNEW
« no previous file with comments | « LayoutTests/webexposed/global-interface-listing-expected.txt ('k') | Source/core/svg/SVGSVGElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698