Cast: Stop logging kVideoFrameSentToEncoder and rename a couple events.
[chromium-blink-merge.git] / chrome / common / extensions / api / webcam_private.idl
blob60811c0344b0f91eeac93d6fa5d626841aa2dfc2
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // Webcam Private API.
6 namespace webcamPrivate {
7 dictionary WebcamConfiguration {
8 double? pan;
9 double? zoom;
10 double? tilt;
13 callback WebcamConfigurationCallback =
14 void(WebcamConfiguration configuration);
16 interface Functions {
17 static void get(DOMString webcamId, WebcamConfigurationCallback callback);
18 static void set(DOMString webcamId, WebcamConfiguration config);
19 static void reset(DOMString webcamId, WebcamConfiguration config);