summaryrefslogtreecommitdiffstats
path: root/src_pd
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2013-01-16 14:10:30 -0800
committerJohn Reck <jreck@google.com>2013-01-16 18:05:07 -0800
commitf4f43e7dbc85ab8b7437e8f1d6ab0317470e70b6 (patch)
tree52bf0103140bbe996165b07c5313a39828ed895d /src_pd
parent48d4284a9ce804ba00b22e587a8b3d27ef9928c1 (diff)
downloadandroid_packages_apps_Gallery2-f4f43e7dbc85ab8b7437e8f1d6ab0317470e70b6.tar.gz
android_packages_apps_Gallery2-f4f43e7dbc85ab8b7437e8f1d6ab0317470e70b6.tar.bz2
android_packages_apps_Gallery2-f4f43e7dbc85ab8b7437e8f1d6ab0317470e70b6.zip
New loading model
Rename reload() to loadIfDirty() loadIfDirty is implemented by MediaSet and is final loadIfDirty is now blocking instead of async Subclasses must implement two protected methods, isDirtyLocked() and load() The change from async reload() to sync loadIfDirty() should be fine since all users of reload() were doing so from a background thread already, and the longest load() is PicasaAlbumSet which is still a fairly brisk 40ms or so Change-Id: If5cc596a1c13e52e5f4efff1a144bd086d37cfb7
Diffstat (limited to 'src_pd')
-rw-r--r--src_pd/com/android/gallery3d/picasasource/PicasaSource.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/src_pd/com/android/gallery3d/picasasource/PicasaSource.java b/src_pd/com/android/gallery3d/picasasource/PicasaSource.java
index 041829169..702b3b5db 100644
--- a/src_pd/com/android/gallery3d/picasasource/PicasaSource.java
+++ b/src_pd/com/android/gallery3d/picasasource/PicasaSource.java
@@ -67,8 +67,12 @@ public class PicasaSource extends MediaSource {
}
@Override
- public long reload() {
- return mDataVersion;
+ protected boolean isDirtyLocked() {
+ return false;
+ }
+
+ @Override
+ protected void load() {
}
}