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

Unified Diff: chrome/test/data/extensions/api_test/file_system/get_writable_file_entry/test.js

Issue 10692104: Add isWritableFileEntry to the fileSystem API (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 5 months 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/get_writable_file_entry/test.js
diff --git a/chrome/test/data/extensions/api_test/file_system/get_writable_file_entry/test.js b/chrome/test/data/extensions/api_test/file_system/get_writable_file_entry/test.js
index 35f270c6c93bc92722d533c08eb5114ac4927421..808e9485777013ed785f730f37b20b7c42e2068b 100644
--- a/chrome/test/data/extensions/api_test/file_system/get_writable_file_entry/test.js
+++ b/chrome/test/data/extensions/api_test/file_system/get_writable_file_entry/test.js
@@ -6,7 +6,7 @@ chrome.test.runTests([
function getWritableEntry() {
chrome.fileSystem.chooseFile(chrome.test.callbackPass(function(entry) {
chrome.test.assertEq('writable.txt', entry.name);
- // Test that we can get the display path of the file.
+ // Test that we can have permission to get the entry as writable.
benwells 2012/07/10 06:40:23 Nice catch! Nit: ... that we cannot get a writable
thorogood 2012/07/10 06:49:22 Done.
chrome.fileSystem.getWritableFileEntry(entry, chrome.test.callbackFail(
'Operation requires fileSystemWrite permission', function() {}));
}));

Powered by Google App Engine
This is Rietveld 408576698