Bug 656099 - bustage fix: add a null param to scheduleUpdate calls. CLOSED TREE

Bug 536295 changed the API, but these calls were missed.
This commit is contained in:
Siddharth Agarwal 2011-05-11 01:28:33 +05:30
Родитель 55f9653a14
Коммит fbd92c4b61
8 изменённых файлов: 16 добавлений и 8 удалений

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

@ -94,7 +94,8 @@ function run_test()
var us = Cc["@mozilla.org/offlinecacheupdate-service;1"].
getService(Ci.nsIOfflineCacheUpdateService);
us.scheduleUpdate(make_uri("http://localhost:4444/manifest"),
make_uri("http://localhost:4444/masterEntry"));
make_uri("http://localhost:4444/masterEntry"),
null);
do_test_pending();
}

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

@ -93,7 +93,8 @@ function run_test()
var us = Cc["@mozilla.org/offlinecacheupdate-service;1"].
getService(Ci.nsIOfflineCacheUpdateService);
us.scheduleUpdate(make_uri("http://localhost:4444/manifest"),
make_uri("http://localhost:4444/masterEntry"));
make_uri("http://localhost:4444/masterEntry"),
null);
do_test_pending();
}

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

@ -98,7 +98,8 @@ function run_test()
var us = Cc["@mozilla.org/offlinecacheupdate-service;1"].
getService(Ci.nsIOfflineCacheUpdateService);
us.scheduleUpdate(make_uri("http://localhost:4444/manifest"),
make_uri("http://localhost:4444/masterEntry"));
make_uri("http://localhost:4444/masterEntry"),
null);
do_test_pending();
}

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

@ -97,7 +97,8 @@ function run_test()
var us = Cc["@mozilla.org/offlinecacheupdate-service;1"].
getService(Ci.nsIOfflineCacheUpdateService);
us.scheduleUpdate(make_uri("http://localhost:4444/manifest"),
make_uri("http://localhost:4444/masterEntry"));
make_uri("http://localhost:4444/masterEntry"),
null);
do_test_pending();
}

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

@ -101,7 +101,8 @@ function run_test()
var us = Cc["@mozilla.org/offlinecacheupdate-service;1"].
getService(Ci.nsIOfflineCacheUpdateService);
us.scheduleUpdate(make_uri("http://localhost:4444/manifest"),
make_uri("http://localhost:4444/masterEntry"));
make_uri("http://localhost:4444/masterEntry"),
null);
do_test_pending();
}

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

@ -100,7 +100,8 @@ function run_test()
var us = Cc["@mozilla.org/offlinecacheupdate-service;1"].
getService(Ci.nsIOfflineCacheUpdateService);
us.scheduleUpdate(make_uri("http://localhost:4444/manifest"),
make_uri("http://localhost:4444/masterEntry"));
make_uri("http://localhost:4444/masterEntry"),
null);
do_test_pending();
}

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

@ -97,7 +97,8 @@ function run_test()
var us = Cc["@mozilla.org/offlinecacheupdate-service;1"].
getService(Ci.nsIOfflineCacheUpdateService);
us.scheduleUpdate(make_uri("http://localhost:4444/manifest"),
make_uri("http://localhost:4444/masterEntry"));
make_uri("http://localhost:4444/masterEntry"),
null);
do_test_pending();
}

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

@ -96,7 +96,8 @@ function run_test()
var us = Cc["@mozilla.org/offlinecacheupdate-service;1"].
getService(Ci.nsIOfflineCacheUpdateService);
us.scheduleUpdate(make_uri("http://localhost:4444/manifest"),
make_uri("http://localhost:4444/masterEntry"));
make_uri("http://localhost:4444/masterEntry"),
null);
do_test_pending();
}