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

Unified Diff: Source/core/dom/DOMPoint.idl

Issue 558163002: Add DOMPointInit (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 6 years, 3 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/dom/DOMPoint.cpp ('k') | Source/core/dom/DOMPointInit.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DOMPoint.idl
diff --git a/Source/core/dom/DOMPoint.idl b/Source/core/dom/DOMPoint.idl
index d75c518c9e8093a1d198230a24c0335ad5823a3c..e202163c8a160173277b96225daeb061c2bc5588 100644
--- a/Source/core/dom/DOMPoint.idl
+++ b/Source/core/dom/DOMPoint.idl
@@ -2,17 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// FIXME: Blink doesn't currently support dictionary definitions.
-// For now, we can use Dictionary interface. See http://crbug.com/321462.
-// dictionary DOMPointInit {
-// unrestricted double x = 0;
-// unrestricted double y = 0;
-// unrestricted double z = 0;
-// unrestricted double w = 1;
-// };
-
[
- Constructor(optional Dictionary point),
+ Constructor(optional DOMPointInit point),
Constructor(unrestricted double x, unrestricted double y,
optional unrestricted double z = 0, optional unrestricted double w = 1),
RuntimeEnabled=GeometryInterfaces,
« no previous file with comments | « Source/core/dom/DOMPoint.cpp ('k') | Source/core/dom/DOMPointInit.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698