Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6551)

Unified Diff: chrome/test/data/extensions/api_test/file_system_provider/notify/test.js

Issue 703123003: [fsp] Pass more detailed errors to the providing extension. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed a bug. Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/api_test/file_system_provider/notify/test.js
diff --git a/chrome/test/data/extensions/api_test/file_system_provider/notify/test.js b/chrome/test/data/extensions/api_test/file_system_provider/notify/test.js
index f37540125041bdf1f5ae2ee43a9ea6af7763bc50..0beaa1cfc385e0c0edece872a23113179aa73591 100644
--- a/chrome/test/data/extensions/api_test/file_system_provider/notify/test.js
+++ b/chrome/test/data/extensions/api_test/file_system_provider/notify/test.js
@@ -140,7 +140,7 @@ function runTests() {
observedPath: fileEntry.fullPath,
recursive: false,
changeType: 'CHANGED',
- }, chrome.test.callbackFail('SECURITY'));
+ }, chrome.test.callbackFail('INVALID_OPERATION'));
}),
function(error) {
chrome.test.fail(error.name);
@@ -165,7 +165,7 @@ function runTests() {
recursive: true,
changeType: 'CHANGED',
tag: TESTING_ANOTHER_TAG,
- }, chrome.test.callbackFail('SECURITY'));
+ }, chrome.test.callbackFail('NOT_FOUND'));
}));
},
@@ -223,7 +223,7 @@ function runTests() {
recursive: false,
changeType: 'CHANGED',
tag: TESTING_ANOTHER_TAG
- }, chrome.test.callbackFail('SECURITY'));
+ }, chrome.test.callbackFail('NOT_FOUND'));
}));
}
]);

Powered by Google App Engine
This is Rietveld 408576698