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

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

Issue 10914284: Rename chrome.fileSystem apis to be expandable to directories if we wish. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Typo Created 8 years, 3 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 b933a2ebca57bea0e656ed833f2066c0fde64fb5..d016da7f783483ad24a8f679c054ba7a620cb41c 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
@@ -4,11 +4,11 @@
chrome.test.runTests([
function getWritableEntry() {
- chrome.fileSystem.chooseFile(chrome.test.callbackPass(function(entry) {
+ chrome.fileSystem.chooseEntry(chrome.test.callbackPass(function(entry) {
chrome.test.assertEq('writable.txt', entry.name);
// Test that we cannot get a writable entry when we don't have permission
// to.
- chrome.fileSystem.getWritableFileEntry(entry, chrome.test.callbackFail(
+ chrome.fileSystem.getWritableEntry(entry, chrome.test.callbackFail(
'Operation requires fileSystemWrite permission', function() {}));
}));
}

Powered by Google App Engine
This is Rietveld 408576698