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

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

Issue 1917023003: ScreenCapture for Android phase1, part I (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/ScreenCaptureFactory.java
diff --git a/media/base/android/java/src/org/chromium/media/ScreenCaptureFactory.java b/media/base/android/java/src/org/chromium/media/ScreenCaptureFactory.java
new file mode 100644
index 0000000000000000000000000000000000000000..6c631e50021e345c2ed610756b2265e3269d985d
--- /dev/null
+++ b/media/base/android/java/src/org/chromium/media/ScreenCaptureFactory.java
@@ -0,0 +1,25 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
mcasas 2016/04/27 01:19:26 2016...
braveyao 2016/05/04 18:49:40 Done.
+// 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 android.content.Context;
+import android.os.Build;
+
+import org.chromium.base.annotations.CalledByNative;
+import org.chromium.base.annotations.JNINamespace;
+
+@JNINamespace("media")
+@SuppressWarnings("deprecation")
+class ScreenCaptureFactory {
mcasas 2016/04/27 01:19:27 This class is tiny, merge it in ScreenCapture as a
braveyao 2016/05/04 18:49:40 Done.
+ // Factory methods.
+ @CalledByNative
+ static ScreenCapture createScreenCaptureMachine(
+ Context context, long nativeScreenCaptureMachineAndroid) {
+ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
+ return new ScreenCapture(context, nativeScreenCaptureMachineAndroid);
+ }
+ return null;
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698