summaryrefslogtreecommitdiffstats
path: root/src_plugin/com/android/camera/app/DevicePluginImpl.java
diff options
context:
space:
mode:
authorDanny Baumann <dannybaumann@web.de>2015-03-03 10:44:52 +0100
committerGerrit Code Review <gerrit@cyanogenmod.org>2015-05-27 13:56:09 +0000
commitd4e6548e0ee391f841e28b7cd7056f0205f76d4d (patch)
treea03d32db48ff6744aba91618d49293efe5bcae38 /src_plugin/com/android/camera/app/DevicePluginImpl.java
parent5eb519b34e48f4ff7926931002294c3626f9de02 (diff)
downloadandroid_packages_apps_Camera2-d4e6548e0ee391f841e28b7cd7056f0205f76d4d.tar.gz
android_packages_apps_Camera2-d4e6548e0ee391f841e28b7cd7056f0205f76d4d.tar.bz2
android_packages_apps_Camera2-d4e6548e0ee391f841e28b7cd7056f0205f76d4d.zip
Introduce a 'device plugin' concept.
It allows device specific code to work with the camera while it's active. Change-Id: Iec78bf4d632c71f02e830eb2ac05504370bba660
Diffstat (limited to 'src_plugin/com/android/camera/app/DevicePluginImpl.java')
-rw-r--r--src_plugin/com/android/camera/app/DevicePluginImpl.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/src_plugin/com/android/camera/app/DevicePluginImpl.java b/src_plugin/com/android/camera/app/DevicePluginImpl.java
new file mode 100644
index 000000000..c50648854
--- /dev/null
+++ b/src_plugin/com/android/camera/app/DevicePluginImpl.java
@@ -0,0 +1,27 @@
+/*
+ * Copyright (C) 2015 The CyanogenMod Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.camera.app;
+
+import android.content.Context;
+
+import com.android.camera.app.DevicePluginBase;
+import com.android.ex.camera2.portability.CameraAgent;
+
+public class DevicePluginImpl extends DevicePluginBase {
+ public DevicePluginImpl() {
+ }
+}