Chromium Code Reviews| Index: third_party/WebKit/Source/modules/shapedetection/DetectedBarcode.idl |
| diff --git a/third_party/WebKit/Source/modules/shapedetection/DetectedBarcode.idl b/third_party/WebKit/Source/modules/shapedetection/DetectedBarcode.idl |
| index 7875f6acb706d20912856703bce995da08d1bbc1..fcf8218099c71c296bf5575555e38ed7336ca8ec 100644 |
| --- a/third_party/WebKit/Source/modules/shapedetection/DetectedBarcode.idl |
| +++ b/third_party/WebKit/Source/modules/shapedetection/DetectedBarcode.idl |
| @@ -11,4 +11,7 @@ |
| // TODO(mcasas): Implement missing fields. https://crbug.com/646083 |
| [SameObject] readonly attribute DOMString rawValue; |
| [SameObject] readonly attribute DOMRect boundingBox; |
| + // 4 corner points in clockwise direction starting with bottom-left. Due to |
|
mcasas
2016/12/16 01:20:00
s/bottom-left/top-left/ [1]
[1] https://wicg.gith
|
| + // possible perspective distortions, this is not necessarily a rectangle. |
| + [SameObject] readonly attribute sequence<Point2D> cornerPoints; |
| }; |