summaryrefslogtreecommitdiffstats
path: root/src/com/android/camera/gallery/IImage.java
diff options
context:
space:
mode:
authorChih-Chung Chang <chihchung@google.com>2009-08-31 11:14:15 +0800
committerChih-Chung Chang <chihchung@google.com>2009-08-31 13:47:30 +0800
commit7b645fbd40ec88dc18f4d1c9b751e8f8b48f6bfe (patch)
tree80d836326737d74237c9ae7ce9d7440be1a304c7 /src/com/android/camera/gallery/IImage.java
parent3f3c857e3f34650c15d764810335024654b0fcc3 (diff)
downloadLegacyCamera-7b645fbd40ec88dc18f4d1c9b751e8f8b48f6bfe.zip
LegacyCamera-7b645fbd40ec88dc18f4d1c9b751e8f8b48f6bfe.tar.gz
LegacyCamera-7b645fbd40ec88dc18f4d1c9b751e8f8b48f6bfe.tar.bz2
Remove unused code.
Change-Id: I848708a594ee58adad404ae3c67257e74cc18e58
Diffstat (limited to 'src/com/android/camera/gallery/IImage.java')
-rw-r--r--src/com/android/camera/gallery/IImage.java8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/com/android/camera/gallery/IImage.java b/src/com/android/camera/gallery/IImage.java
index f93d539..bad41cc 100644
--- a/src/com/android/camera/gallery/IImage.java
+++ b/src/com/android/camera/gallery/IImage.java
@@ -38,8 +38,6 @@ public interface IImage {
public abstract Bitmap fullSizeBitmap(int minSideLength,
int maxNumberOfPixels);
public abstract Bitmap fullSizeBitmap(int minSideLength,
- int maxNumberOfPixels, boolean rotateAsNeeded);
- public abstract Bitmap fullSizeBitmap(int minSideLength,
int maxNumberOfPixels, boolean rotateAsNeeded, boolean useNative);
public abstract int getDegreesRotated();
public static final boolean ROTATE_AS_NEEDED = true;
@@ -55,8 +53,7 @@ public interface IImage {
/** Get the path of the (full size) image data. */
public abstract String getDataPath();
- // Get/Set the title of the image
- public abstract void setTitle(String name);
+ // Get the title of the image
public abstract String getTitle();
// Get metadata of the image
@@ -74,9 +71,8 @@ public interface IImage {
public abstract boolean isReadonly();
public abstract boolean isDrm();
- // Get the bitmap/uri of the medium thumbnail
+ // Get the bitmap of the medium thumbnail
public abstract Bitmap thumbBitmap(boolean rotateAsNeeded);
- public abstract Uri thumbUri();
// Get the bitmap of the mini thumbnail.
public abstract Bitmap miniThumbBitmap();