зеркало из https://github.com/mozilla/gecko-dev.git
Bug 797151 - Use Froyo api for saving SharedPrefereces. r=mfinkle
This commit is contained in:
Родитель
181d56439e
Коммит
003b5c2ec4
|
@ -123,10 +123,14 @@ public class WebAppAllocator {
|
|||
return index;
|
||||
}
|
||||
|
||||
public synchronized void releaseIndex(int index) {
|
||||
mPrefs.edit()
|
||||
.remove(appKey(index))
|
||||
.remove(iconKey(index))
|
||||
.apply();
|
||||
public synchronized void releaseIndex(final int index) {
|
||||
GeckoBackgroundThread.getHandler().post(new Runnable() {
|
||||
public void run() {
|
||||
mPrefs.edit()
|
||||
.remove(appKey(index))
|
||||
.remove(iconKey(index))
|
||||
.commit();
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче