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

Unified Diff: chrome/test/data/extensions/api_test/file_system/get_writable_file_entry_with_write/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_with_write/test.js
diff --git a/chrome/test/data/extensions/api_test/file_system/get_writable_file_entry_with_write/test.js b/chrome/test/data/extensions/api_test/file_system/get_writable_file_entry_with_write/test.js
index a99e602bfd793bd671b7b222d7ff5556b41bff57..08ff1e531163b577bc30f01a3fdabe32f8476592 100644
--- a/chrome/test/data/extensions/api_test/file_system/get_writable_file_entry_with_write/test.js
+++ b/chrome/test/data/extensions/api_test/file_system/get_writable_file_entry_with_write/test.js
@@ -4,10 +4,10 @@
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 can get the display path of the file.
- chrome.fileSystem.getWritableFileEntry(entry, chrome.test.callbackPass(
+ chrome.fileSystem.getWritableEntry(entry, chrome.test.callbackPass(
function(writable) {
checkEntry(writable, 'writable.txt', false, true);
}));

Powered by Google App Engine
This is Rietveld 408576698