Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(458)

Unified Diff: media/base/android/java/src/org/chromium/media/VideoCaptureFormat.java

Issue 1714913002: Reland: Move VideoCapture* files from media/base/android/... to media/capture/video/android/java/... (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gyp-gn files and added a capture_jni_registrar Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/base/android/java/src/org/chromium/media/VideoCaptureFormat.java
diff --git a/media/base/android/java/src/org/chromium/media/VideoCaptureFormat.java b/media/base/android/java/src/org/chromium/media/VideoCaptureFormat.java
deleted file mode 100644
index 6eb3f78bd4dfb9f61b097fefebf853963c3abd81..0000000000000000000000000000000000000000
--- a/media/base/android/java/src/org/chromium/media/VideoCaptureFormat.java
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright 2015 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;
-
-class VideoCaptureFormat {
- int mWidth;
- int mHeight;
- final int mFramerate;
- final int mPixelFormat;
-
- public VideoCaptureFormat(
- int width, int height, int framerate, int pixelformat) {
- mWidth = width;
- mHeight = height;
- mFramerate = framerate;
- mPixelFormat = pixelformat;
- }
-
- public int getWidth() {
- return mWidth;
- }
-
- public int getHeight() {
- return mHeight;
- }
-
- public int getFramerate() {
- return mFramerate;
- }
-
- public int getPixelFormat() {
- return mPixelFormat;
- }
-}

Powered by Google App Engine
This is Rietveld 408576698