summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/controller
diff options
context:
space:
mode:
authornicolasroard <nicolasroard@google.com>2013-07-02 15:46:23 -0700
committernicolasroard <nicolasroard@google.com>2013-07-02 15:46:23 -0700
commitce9ceff5776a9b0479c30cbeb2a9388b44df1865 (patch)
tree1fe5ec86735a1a01e20040cb0757063dbf605a7f /src/com/android/gallery3d/filtershow/controller
parent5d24515190c1664f944b7950d1a75b0df0de2ff8 (diff)
downloadandroid_packages_apps_Gallery2-ce9ceff5776a9b0479c30cbeb2a9388b44df1865.tar.gz
android_packages_apps_Gallery2-ce9ceff5776a9b0479c30cbeb2a9388b44df1865.tar.bz2
android_packages_apps_Gallery2-ce9ceff5776a9b0479c30cbeb2a9388b44df1865.zip
Move classes to pipeline package
Change-Id: I9d664537d845d9daeb352c8006d0296a3f546dca
Diffstat (limited to 'src/com/android/gallery3d/filtershow/controller')
-rw-r--r--src/com/android/gallery3d/filtershow/controller/BasicParameterStyle.java3
-rw-r--r--src/com/android/gallery3d/filtershow/controller/FilterView.java2
-rw-r--r--src/com/android/gallery3d/filtershow/controller/ParameterStyles.java2
-rw-r--r--src/com/android/gallery3d/filtershow/controller/StyleChooser.java4
4 files changed, 5 insertions, 6 deletions
diff --git a/src/com/android/gallery3d/filtershow/controller/BasicParameterStyle.java b/src/com/android/gallery3d/filtershow/controller/BasicParameterStyle.java
index 25169c2d8..fb9f95e97 100644
--- a/src/com/android/gallery3d/filtershow/controller/BasicParameterStyle.java
+++ b/src/com/android/gallery3d/filtershow/controller/BasicParameterStyle.java
@@ -17,9 +17,8 @@
package com.android.gallery3d.filtershow.controller;
import android.content.Context;
-import android.util.Log;
-import com.android.gallery3d.filtershow.cache.RenderingRequestCaller;
+import com.android.gallery3d.filtershow.pipeline.RenderingRequestCaller;
public class BasicParameterStyle implements ParameterStyles {
protected String mParameterName;
diff --git a/src/com/android/gallery3d/filtershow/controller/FilterView.java b/src/com/android/gallery3d/filtershow/controller/FilterView.java
index 2be7f36a9..9ca81dc35 100644
--- a/src/com/android/gallery3d/filtershow/controller/FilterView.java
+++ b/src/com/android/gallery3d/filtershow/controller/FilterView.java
@@ -16,7 +16,7 @@
package com.android.gallery3d.filtershow.controller;
-import com.android.gallery3d.filtershow.cache.RenderingRequestCaller;
+import com.android.gallery3d.filtershow.pipeline.RenderingRequestCaller;
public interface FilterView {
public void computeIcon(int index, RenderingRequestCaller caller);
diff --git a/src/com/android/gallery3d/filtershow/controller/ParameterStyles.java b/src/com/android/gallery3d/filtershow/controller/ParameterStyles.java
index c267d3da3..7d250a0bf 100644
--- a/src/com/android/gallery3d/filtershow/controller/ParameterStyles.java
+++ b/src/com/android/gallery3d/filtershow/controller/ParameterStyles.java
@@ -18,7 +18,7 @@ package com.android.gallery3d.filtershow.controller;
import android.content.Context;
-import com.android.gallery3d.filtershow.cache.RenderingRequestCaller;
+import com.android.gallery3d.filtershow.pipeline.RenderingRequestCaller;
public interface ParameterStyles extends Parameter {
public static String sParameterType = "ParameterStyles";
diff --git a/src/com/android/gallery3d/filtershow/controller/StyleChooser.java b/src/com/android/gallery3d/filtershow/controller/StyleChooser.java
index b3d0de715..fb613abc7 100644
--- a/src/com/android/gallery3d/filtershow/controller/StyleChooser.java
+++ b/src/com/android/gallery3d/filtershow/controller/StyleChooser.java
@@ -11,8 +11,8 @@ import android.widget.ImageView.ScaleType;
import android.widget.LinearLayout;
import com.android.gallery3d.R;
-import com.android.gallery3d.filtershow.cache.RenderingRequest;
-import com.android.gallery3d.filtershow.cache.RenderingRequestCaller;
+import com.android.gallery3d.filtershow.pipeline.RenderingRequest;
+import com.android.gallery3d.filtershow.pipeline.RenderingRequestCaller;
import com.android.gallery3d.filtershow.editors.Editor;
import java.util.Vector;