summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/shapedetection/detected_barcode.idl
blob: 12682c87744e8899c81ece2c6c74b5b32074d3a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// https://wicg.github.io/shape-detection-api/#barcode-detection-api

[
    Constructor,
    Serializable,
    RuntimeEnabled=ShapeDetection
] interface DetectedBarcode {
    // TODO(mcasas): Implement missing fields. https://crbug.com/646083
    [SameObject] readonly attribute DOMString rawValue;
    [SameObject] readonly attribute DOMRectReadOnly boundingBox;
    // 4 corner points in clockwise direction starting with top-left. Due to
    // possible perspective distortions, this is not necessarily a rectangle.
    [SameObject, SaveSameObject] readonly attribute FrozenArray<Point2D> cornerPoints;

    // TODO(peria): toJSON is not in spec. https://crbug.com/736332
    [CallWith=ScriptState, ImplementedAs=toJSONForBinding] object toJSON();
};