Resolve bookmarks.js merge conflicts switching to batchSync (with trailing comma).

This commit is contained in:
Edward Lee 2009-08-31 18:04:40 -07:00
Родитель 5f8f947cfd
Коммит 18a57b6d35
1 изменённых файлов: 1 добавлений и 9 удалений

Просмотреть файл

@ -94,12 +94,7 @@ BookmarksEngine.prototype = {
_storeObj: BookmarksStore,
_trackerObj: BookmarksTracker,
<<<<<<< local
_sync: function BookmarksEngine__sync() {
Svc.Bookmark.runInBatchMode({
runBatched: Utils.bind2(this, SyncEngine.prototype._sync)
}, null);
},
_sync: Utils.batchSync("Bookmark", SyncEngine),
_syncStartup: function _syncStart() {
SyncEngine.prototype._syncStartup.call(this);
@ -143,9 +138,6 @@ BookmarksEngine.prototype = {
// TODO for bookmarks, check if it exists and find guid
// for everything else (folders, separators) look for parent/pred?
}
=======
_sync: Utils.batchSync("Bookmark", SyncEngine)
>>>>>>> other
};
function BookmarksStore() {