summaryrefslogtreecommitdiffstats
path: root/extensions/common/api/webcam_private.idl
blob: 757e5b383c5518489256d3378cb79bf6ad471f4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright 2014 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.

// Webcam Private API.
namespace webcamPrivate {
  enum PanDirection { stop, right, left };
  enum TiltDirection { stop, up, down };

  dictionary WebcamConfiguration {
    double? pan;
    PanDirection? panDirection;
    double? tilt;
    TiltDirection? tiltDirection;
    double? zoom;
  };

  callback WebcamConfigurationCallback =
      void(WebcamConfiguration configuration);

  interface Functions {
    static void get(DOMString webcamId, WebcamConfigurationCallback callback);
    static void set(DOMString webcamId, WebcamConfiguration config);
    static void reset(DOMString webcamId, WebcamConfiguration config);
  };
};