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

Unified Diff: tools/dom/idl/dart/dart.idl

Issue 12548010: Update context2d.arc to take optional anticlockwise parameter (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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
Index: tools/dom/idl/dart/dart.idl
diff --git a/tools/dom/idl/dart/dart.idl b/tools/dom/idl/dart/dart.idl
index 0450497d67e9aceae2e19920a87ccfb41fbed76c..d9d2f63db689f6ddf2cad2bf778f4f51cd41b990 100644
--- a/tools/dom/idl/dart/dart.idl
+++ b/tools/dom/idl/dart/dart.idl
@@ -138,6 +138,12 @@ interface WebGLRenderingContext {
};
[Supplemental]
+interface CanvasRenderingContext2D {
+ [Suppressed] any arc( float x, float y, float radius, float startAngle, float endAngle, boolean anticlockwise);
+ [Custom] void arc( float x, float y, float radius, float startAngle, float endAngle, [Optional] boolean anticlockwise);
+};
+
+[Supplemental]
interface CSSStyleDeclaration {
void setProperty(in DOMString propertyName, in DOMString value, [Optional] in DOMString priority);
[DartName=_getPropertyValue] DOMString getPropertyValue(in DOMString propertyName);
@@ -265,7 +271,6 @@ interface EntrySync {
EntrySync getParent();
};
-
[Supplemental,
CustomConstructor,
Constructor(in Array blobParts,
@@ -357,6 +362,5 @@ interface XMLHttpRequest {
raises(DOMException);
};
-
[Suppressed]
interface Entity {};

Powered by Google App Engine
This is Rietveld 408576698