summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/shapedetection/detected_barcode.idl
blob: 56951d2c1cd97c07932508950d04dd58cc42e547 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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,
    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;
};