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 8472bbf80f2c7aa3e57c9592ad8e90d08a168b50..deaec4ecdc73d001770e3e031fbc58b78961f578 100644 |
| --- a/third_party/WebKit/Source/modules/shapedetection/DetectedBarcode.idl |
| +++ b/third_party/WebKit/Source/modules/shapedetection/DetectedBarcode.idl |
| @@ -9,9 +9,9 @@ |
| RuntimeEnabled=ShapeDetection, |
| ] interface DetectedBarcode { |
| // TODO(mcasas): Implement missing fields. https://crbug.com/646083 |
| - [SameObject] readonly attribute DOMString rawValue; |
| - [SameObject] readonly attribute DOMRect boundingBox; |
| + [SameObject, SaveSameObject] readonly attribute DOMString rawValue; |
|
Yuki
2017/05/10 06:37:37
Please double-check on your side, but IIUC, we don
|
| + [SameObject, SaveSameObject] readonly attribute DOMRect boundingBox; |
|
Yuki
2017/05/10 06:37:37
Please double-check on your side, but we shouldn't
mcasas
2017/05/10 19:00:45
OIC! Apologies for the misunderstanding; next Ps w
|
| // 4 corner points in clockwise direction starting with top-left. Due to |
| // possible perspective distortions, this is not necessarily a rectangle. |
| - [SameObject] readonly attribute FrozenArray<Point2D> cornerPoints; |
| + [SameObject, SaveSameObject] readonly attribute FrozenArray<Point2D> cornerPoints; |
| }; |