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

Unified Diff: Source/core/svg/SVGPathSegArcRel.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/SVGPathSegArcAbs.idl ('k') | Source/core/svg/SVGPathSegCurvetoCubicAbs.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPathSegArcRel.idl
diff --git a/Source/core/svg/SVGPathSegArcRel.idl b/Source/core/svg/SVGPathSegArcRel.idl
index d682c2c01bc6386a8164f9db71b3599a60bc6aff..2c81a878d51ff019eff0e62a438d37232432bff5 100644
--- a/Source/core/svg/SVGPathSegArcRel.idl
+++ b/Source/core/svg/SVGPathSegArcRel.idl
@@ -24,13 +24,14 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-interface SVGPathSegArcRel : 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 SVGPathSegArcRel : 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/SVGPathSegArcAbs.idl ('k') | Source/core/svg/SVGPathSegCurvetoCubicAbs.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698