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

Unified Diff: media/capture/video/android/photo_capabilities.h

Issue 2214533002: move //media/capture to //device/capture (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/capture/video/android/photo_capabilities.h
diff --git a/media/capture/video/android/photo_capabilities.h b/media/capture/video/android/photo_capabilities.h
deleted file mode 100644
index de6d38f204dacc7512fb50e63bc9804ba04df789..0000000000000000000000000000000000000000
--- a/media/capture/video/android/photo_capabilities.h
+++ /dev/null
@@ -1,40 +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.
-
-#ifndef MEDIA_CAPTURE_VIDEO_ANDROID_PHOTO_CAPABILITIES_H_
-#define MEDIA_CAPTURE_VIDEO_ANDROID_PHOTO_CAPABILITIES_H_
-
-#include <jni.h>
-#include <string>
-
-#include "base/android/scoped_java_ref.h"
-
-namespace media {
-
-class PhotoCapabilities {
- public:
- explicit PhotoCapabilities(base::android::ScopedJavaLocalRef<jobject> object);
- ~PhotoCapabilities();
-
- int getMinIso() const;
- int getMaxIso() const;
- int getCurrentIso() const;
- int getMinHeight() const;
- int getMaxHeight() const;
- int getCurrentHeight() const;
- int getMinWidth() const;
- int getMaxWidth() const;
- int getCurrentWidth() const;
- int getMinZoom() const;
- int getMaxZoom() const;
- int getCurrentZoom() const;
- bool getAutoFocusInUse() const;
-
- private:
- const base::android::ScopedJavaLocalRef<jobject> object_;
-};
-
-} // namespace media
-
-#endif // MEDIA_CAPTURE_VIDEO_ANDROID_PHOTO_CAPABILITIES_H_

Powered by Google App Engine
This is Rietveld 408576698