| Index: chrome/test/data/extensions/api_test/passwords_private/test.js
|
| diff --git a/chrome/test/data/extensions/api_test/passwords_private/test.js b/chrome/test/data/extensions/api_test/passwords_private/test.js
|
| index cd8876d24ed5058024db02bc3bc67019c09acbbb..81a3a1826ed70833a4c7ef8ea66c7c14d74c594a 100644
|
| --- a/chrome/test/data/extensions/api_test/passwords_private/test.js
|
| +++ b/chrome/test/data/extensions/api_test/passwords_private/test.js
|
| @@ -64,6 +64,26 @@ var availableTests = [
|
| chrome.passwordsPrivate.requestPlaintextPassword(
|
| {originUrl: 'http://www.test.com', username: 'test@test.com'});
|
| },
|
| +
|
| + function getSavedPasswordList() {
|
| + var callback = function(list) {
|
| + chrome.test.assertTrue(!!list);
|
| + // Ensure that the callback is invoked.
|
| + chrome.test.succeed();
|
| + };
|
| +
|
| + chrome.passwordsPrivate.getSavedPasswordList(callback);
|
| + },
|
| +
|
| + function getPasswordExceptionList() {
|
| + var callback = function(list) {
|
| + chrome.test.assertTrue(!!list);
|
| + // Ensure that the callback is invoked.
|
| + chrome.test.succeed();
|
| + };
|
| +
|
| + chrome.passwordsPrivate.getPasswordExceptionList(callback);
|
| + },
|
| ];
|
|
|
| var testToRun = window.location.search.substring(1);
|
|
|