summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/app/StitchingChangeListener.java
diff options
context:
space:
mode:
authorWu-cheng Li <wuchengli@google.com>2012-10-09 14:44:31 +0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-10-09 07:53:12 -0700
commitef9ff4b41f483c9c10ff7557bc7ffd7907449213 (patch)
tree309391c5c4c8767fa08bcc7a383276d191986550 /src/com/android/gallery3d/app/StitchingChangeListener.java
parent91af43b868a77560bbb43d2714d5685caa179fc7 (diff)
downloadandroid_packages_apps_Snap-ef9ff4b41f483c9c10ff7557bc7ffd7907449213.tar.gz
android_packages_apps_Snap-ef9ff4b41f483c9c10ff7557bc7ffd7907449213.tar.bz2
android_packages_apps_Snap-ef9ff4b41f483c9c10ff7557bc7ffd7907449213.zip
Handle stitching progress in secure album.
- In secure album, show stitching progress only if it is captured after the device is locked. - Make sure image capture intent does not show stitching progress. bug:7285105 Change-Id: I0b3ba60fe3c03f488bea25e2f09843dd84ab6dfb
Diffstat (limited to 'src/com/android/gallery3d/app/StitchingChangeListener.java')
-rw-r--r--src/com/android/gallery3d/app/StitchingChangeListener.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/com/android/gallery3d/app/StitchingChangeListener.java b/src/com/android/gallery3d/app/StitchingChangeListener.java
index 980f1450a..40f59a52c 100644
--- a/src/com/android/gallery3d/app/StitchingChangeListener.java
+++ b/src/com/android/gallery3d/app/StitchingChangeListener.java
@@ -16,12 +16,14 @@
package com.android.gallery3d.app;
+import com.android.gallery3d.data.Path;
+
import android.net.Uri;
public interface StitchingChangeListener {
- public void onStitchingQueued(String filePath);
+ public void onStitchingQueued(Path path);
- public void onStitchingResult(String filePath, Uri uri);
+ public void onStitchingResult(Path path, Uri uri);
- public void onStitchingProgress(String filePath, int progress);
+ public void onStitchingProgress(Path path, int progress);
}