summaryrefslogtreecommitdiffstats
path: root/src_pd
diff options
context:
space:
mode:
authorOwen Lin <owenlin@google.com>2011-12-14 12:30:39 +0800
committerOwen Lin <owenlin@google.com>2011-12-14 12:30:39 +0800
commit6f6230e40811effe0b0ca9ba023136b3b36130b7 (patch)
treec45d22aef343561585bb86daa348d5115155380f /src_pd
parent57129a21e1865bb44ea4c4a93f75ed996c9b2764 (diff)
downloadandroid_packages_apps_Gallery2-6f6230e40811effe0b0ca9ba023136b3b36130b7.tar.gz
android_packages_apps_Gallery2-6f6230e40811effe0b0ca9ba023136b3b36130b7.tar.bz2
android_packages_apps_Gallery2-6f6230e40811effe0b0ca9ba023136b3b36130b7.zip
Support querying account and picasa id of a picasa image.
Change-Id: I7d24fb70b0a8a01c5d0fbdb6205c25d74d1996a6 fix: 5482269
Diffstat (limited to 'src_pd')
-rw-r--r--src_pd/com/android/gallery3d/picasasource/PicasaSource.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/src_pd/com/android/gallery3d/picasasource/PicasaSource.java b/src_pd/com/android/gallery3d/picasasource/PicasaSource.java
index 8cfdac3a7..f8490676f 100644
--- a/src_pd/com/android/gallery3d/picasasource/PicasaSource.java
+++ b/src_pd/com/android/gallery3d/picasasource/PicasaSource.java
@@ -118,6 +118,14 @@ public class PicasaSource extends MediaSource {
throw new UnsupportedOperationException();
}
+ public static long getPicasaId(MediaObject image) {
+ throw new UnsupportedOperationException();
+ }
+
+ public static String getUserAccount(Context context, MediaObject image) {
+ throw new UnsupportedOperationException();
+ }
+
public static ParcelFileDescriptor openFile(Context context, MediaObject image, String mode)
throws FileNotFoundException {
throw new UnsupportedOperationException();