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

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

Issue 146423002: Move [StrictTypeChecking] to interface (from members), where possible (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/svg/SVGPathElement.idl ('k') | Source/core/svg/SVGPathSegArcRel.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPathSegArcAbs.idl
diff --git a/Source/core/svg/SVGPathSegArcAbs.idl b/Source/core/svg/SVGPathSegArcAbs.idl
index a50286fe20f582bb168cc925fd6a42ef5a25f9e2..2f8e401fdb678db9276b73b0afd35c104af25fb7 100644
--- a/Source/core/svg/SVGPathSegArcAbs.idl
+++ b/Source/core/svg/SVGPathSegArcAbs.idl
@@ -24,13 +24,14 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-interface SVGPathSegArcAbs : SVGPathSeg {
- [StrictTypeChecking] attribute float x;
- [StrictTypeChecking] attribute float y;
- [StrictTypeChecking] attribute float r1;
- [StrictTypeChecking] attribute float r2;
- [StrictTypeChecking] attribute float angle;
- [StrictTypeChecking] attribute boolean largeArcFlag;
- [StrictTypeChecking] attribute boolean sweepFlag;
+[
+ StrictTypeChecking,
+] interface SVGPathSegArcAbs : SVGPathSeg {
+ attribute float x;
+ attribute float y;
+ attribute float r1;
+ attribute float r2;
+ attribute float angle;
+ attribute boolean largeArcFlag;
+ attribute boolean sweepFlag;
};
-
« no previous file with comments | « Source/core/svg/SVGPathElement.idl ('k') | Source/core/svg/SVGPathSegArcRel.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698