Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 /* Any copyright is dedicated to the Public Domain.
2 http://creativecommons.org/publicdomain/zero/1.0/ */
4 package org.mozilla.gecko.background.sync.helpers;
6 public class ExpectStoreCompletedDelegate extends DefaultStoreDelegate {
8 @Override
9 public void onRecordStoreSucceeded(String guid) {
10 // That's fine.
11 }
13 @Override
14 public void onStoreCompleted(long storeEnd) {
15 performNotify();
16 }
17 }