| 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..52040521dd278b25f5c29315a34cb0d869f371d3 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 requestSavedPasswordList() {
|
| + var callback = function(list) {
|
| + chrome.test.assertTrue(!!list);
|
| + // Ensure that the callback is invoked.
|
| + chrome.test.succeed();
|
| + };
|
| +
|
| + chrome.passwordsPrivate.requestSavedPasswordList(callback);
|
| + },
|
| +
|
| + function requestPasswordExceptionList() {
|
| + var callback = function(list) {
|
| + chrome.test.assertTrue(!!list);
|
| + // Ensure that the callback is invoked.
|
| + chrome.test.succeed();
|
| + };
|
| +
|
| + chrome.passwordsPrivate.requestPasswordExceptionList(callback);
|
| + },
|
| ];
|
|
|
| var testToRun = window.location.search.substring(1);
|
|
|