summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/app/AlbumPage.java
diff options
context:
space:
mode:
authorRuben Brunk <rubenbrunk@google.com>2013-05-28 12:34:14 -0700
committerRuben Brunk <rubenbrunk@google.com>2013-05-28 12:34:14 -0700
commitd25fdea42988c72312ab3be0be76ab75e4d944c8 (patch)
treed013957e5cf3e5269c2eb5e3e4a864a28c954d8d /src/com/android/gallery3d/app/AlbumPage.java
parente0dbb510456f0682804a3a2c3b0d3f921ab15b64 (diff)
downloadandroid_packages_apps_Gallery2-d25fdea42988c72312ab3be0be76ab75e4d944c8.tar.gz
android_packages_apps_Gallery2-d25fdea42988c72312ab3be0be76ab75e4d944c8.tar.bz2
android_packages_apps_Gallery2-d25fdea42988c72312ab3be0be76ab75e4d944c8.zip
Removed unused handling for intent extras in editor.
Bug: 9170644 Change-Id: I569b16d278d1813f5a96f9e0231ed71ff9e33687
Diffstat (limited to 'src/com/android/gallery3d/app/AlbumPage.java')
-rw-r--r--src/com/android/gallery3d/app/AlbumPage.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/gallery3d/app/AlbumPage.java b/src/com/android/gallery3d/app/AlbumPage.java
index 001ce87b7..658abbbd4 100644
--- a/src/com/android/gallery3d/app/AlbumPage.java
+++ b/src/com/android/gallery3d/app/AlbumPage.java
@@ -39,7 +39,7 @@ import com.android.gallery3d.data.MediaItem;
import com.android.gallery3d.data.MediaObject;
import com.android.gallery3d.data.MediaSet;
import com.android.gallery3d.data.Path;
-import com.android.gallery3d.filtershow.FilterShowActivity;
+import com.android.gallery3d.filtershow.crop.CropActivity;
import com.android.gallery3d.filtershow.crop.CropExtras;
import com.android.gallery3d.glrenderer.FadeTexture;
import com.android.gallery3d.glrenderer.GLCanvas;
@@ -318,7 +318,7 @@ public class AlbumPage extends ActivityState implements GalleryActionBar.Cluster
Activity activity = mActivity;
if (mData.getString(Gallery.EXTRA_CROP) != null) {
Uri uri = dm.getContentUri(item.getPath());
- Intent intent = new Intent(FilterShowActivity.CROP_ACTION, uri)
+ Intent intent = new Intent(CropActivity.CROP_ACTION, uri)
.addFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT)
.putExtras(getData());
if (mData.getParcelable(MediaStore.EXTRA_OUTPUT) == null) {