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

dictionary DetectedBarcode {
    required DOMString rawValue;
    required DOMRectReadOnly boundingBox;
    required DOMString format;
    // 4 corner points in clockwise direction starting with top-left. Due to
    // possible perspective distortions, this is not necessarily a rectangle.
    required FrozenArray<Point2D> cornerPoints;
};