summaryrefslogtreecommitdiffstats
path: root/src_pd
diff options
context:
space:
mode:
authorSascha Haeberling <haeberling@google.com>2014-02-19 08:39:28 -0800
committerSascha Haeberling <haeberling@google.com>2014-02-19 10:18:43 -0800
commitc26a3286fc2b4816a5a077cde313a4908d4fb73b (patch)
tree05475808166a2fbb3581c8b715f3aeee50242a6c /src_pd
parentceb24012c795d85f9197fd4be7130821fe9ecb61 (diff)
downloadandroid_packages_apps_Camera2-c26a3286fc2b4816a5a077cde313a4908d4fb73b.tar.gz
android_packages_apps_Camera2-c26a3286fc2b4816a5a077cde313a4908d4fb73b.tar.bz2
android_packages_apps_Camera2-c26a3286fc2b4816a5a077cde313a4908d4fb73b.zip
Install a release dialog at start-up if necessary.
Bug: 11984630 Change-Id: I0619c82458b6f2d2dc4c9cbb8fca3a11b75a9ad5
Diffstat (limited to 'src_pd')
-rw-r--r--src_pd/com/android/camera/util/ReleaseDialogHelper.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/src_pd/com/android/camera/util/ReleaseDialogHelper.java b/src_pd/com/android/camera/util/ReleaseDialogHelper.java
new file mode 100644
index 000000000..938e1703f
--- /dev/null
+++ b/src_pd/com/android/camera/util/ReleaseDialogHelper.java
@@ -0,0 +1,27 @@
+/*
+ * Copyright (C) 2014 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.app.Activity;
+
+import com.android.camera.settings.SettingsManager;
+
+public class ReleaseDialogHelper {
+ public static void maybeShowDialog(Activity activity, SettingsManager settingsManager) {
+ // Do nothing.
+ }
+}