summaryrefslogtreecommitdiffstats
path: root/src_pd/com
diff options
context:
space:
mode:
authorRuben Brunk <rubenbrunk@google.com>2013-09-06 11:56:32 -0700
committerRuben Brunk <rubenbrunk@google.com>2013-09-18 23:57:14 -0700
commita9d66bdab247626b31dc182c4d62520b3abffdbd (patch)
tree96b6f0de3ecdf229c984e51b4d18f73859868a16 /src_pd/com
parentb2d70d5bfcebbd2deb3e8e81371204eb0fc0421b (diff)
downloadandroid_packages_apps_Snap-a9d66bdab247626b31dc182c4d62520b3abffdbd.tar.gz
android_packages_apps_Snap-a9d66bdab247626b31dc182c4d62520b3abffdbd.tar.bz2
android_packages_apps_Snap-a9d66bdab247626b31dc182c4d62520b3abffdbd.zip
Adding gcam module to Camera2 app.
Bug: 10430748 Change-Id: I0c53085553cd8505ba376b1518507d36065894f5
Diffstat (limited to 'src_pd/com')
-rw-r--r--src_pd/com/android/camera/util/GcamHelper.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/src_pd/com/android/camera/util/GcamHelper.java b/src_pd/com/android/camera/util/GcamHelper.java
new file mode 100644
index 000000000..0611955f7
--- /dev/null
+++ b/src_pd/com/android/camera/util/GcamHelper.java
@@ -0,0 +1,32 @@
+/*
+ * Copyright (C) 2013 The Android Open Source 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.util;
+
+import android.content.Context;
+
+import com.android.camera.CameraModule;
+
+public class GcamHelper {
+
+ public static CameraModule createGcamModule() {
+ return null;
+ }
+
+ public static boolean hasGcamCapture(Context context) {
+ return false;
+ }
+
+}