| Index: media/capture/video/android/java/src/org/chromium/media/PhotoCapabilities.java
|
| diff --git a/media/capture/video/android/java/src/org/chromium/media/PhotoCapabilities.java b/media/capture/video/android/java/src/org/chromium/media/PhotoCapabilities.java
|
| deleted file mode 100644
|
| index 304c6e170e546a24aff58e0781f778bb522056cd..0000000000000000000000000000000000000000
|
| --- a/media/capture/video/android/java/src/org/chromium/media/PhotoCapabilities.java
|
| +++ /dev/null
|
| @@ -1,37 +0,0 @@
|
| -// 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.
|
| -
|
| -package org.chromium.media;
|
| -
|
| -import org.chromium.base.annotations.CalledByNative;
|
| -import org.chromium.base.annotations.JNINamespace;
|
| -
|
| -/**
|
| - * Set of PhotoCapabilities read from the different VideoCapture Devices.
|
| - **/
|
| -@JNINamespace("media")
|
| -class PhotoCapabilities {
|
| - public final int maxZoom;
|
| - public final int minZoom;
|
| - public final int currentZoom;
|
| -
|
| - PhotoCapabilities(int maxZoom, int minZoom, int currentZoom) {
|
| - this.maxZoom = maxZoom;
|
| - this.minZoom = minZoom;
|
| - this.currentZoom = currentZoom;
|
| - }
|
| -
|
| - @CalledByNative
|
| - public int getMinZoom() {
|
| - return minZoom;
|
| - }
|
| - @CalledByNative
|
| - public int getMaxZoom() {
|
| - return maxZoom;
|
| - }
|
| - @CalledByNative
|
| - public int getCurrentZoom() {
|
| - return currentZoom;
|
| - }
|
| -}
|
|
|