Bug 676404 - command API migration. Fixes 845ed0ee7123. a=bustage

This commit is contained in:
Richard Newman 2011-08-05 16:01:49 -07:00
Родитель 795366736e
Коммит b2b4806d88
2 изменённых файлов: 3 добавлений и 2 удалений

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

@ -257,7 +257,7 @@ ClientEngine.prototype = {
* @return false to abort sync
*/
processIncomingCommands: function processIncomingCommands() {
this._notify("clients:process-commands", "", function() {
return this._notify("clients:process-commands", "", function() {
let commands = this.localCommands;
// Immediately clear out the commands as we've got them locally.

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

@ -387,7 +387,8 @@ add_test(function test_process_incoming_commands() {
Svc.Obs.add(ev, handler);
Clients.processIncomingCommands();
// logout command causes processIncomingCommands to return explicit false.
do_check_false(Clients.processIncomingCommands());
});
add_test(function test_command_sync() {