diff options
-rw-r--r-- | chrome/test/data/extensions/api_test/fileapi/background.html | 2 | ||||
-rw-r--r-- | chrome/test/data/extensions/api_test/fileapi/tab.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/test/data/extensions/api_test/fileapi/background.html b/chrome/test/data/extensions/api_test/fileapi/background.html index a26019f..b3efc55 100644 --- a/chrome/test/data/extensions/api_test/fileapi/background.html +++ b/chrome/test/data/extensions/api_test/fileapi/background.html @@ -2,7 +2,7 @@ var fileSystem = null; console.log("Requesting a filesystem..."); - requestFileSystem(window.TEMPORARY, 100, getFileSystem, errorCallback); + webkitRequestFileSystem(window.TEMPORARY, 100, getFileSystem, errorCallback); function getFileSystem(fs) { fileSystem = fs; diff --git a/chrome/test/data/extensions/api_test/fileapi/tab.html b/chrome/test/data/extensions/api_test/fileapi/tab.html index 3afb2b7..27e779b 100644 --- a/chrome/test/data/extensions/api_test/fileapi/tab.html +++ b/chrome/test/data/extensions/api_test/fileapi/tab.html @@ -19,7 +19,7 @@ function successEntryCallback(entry) { chrome.test.runTests([function tab() { console.log("Requesting a filesystem..."); - requestFileSystem(window.TEMPORARY, 100, function(fs) { + webkitRequestFileSystem(window.TEMPORARY, 100, function(fs) { fileSystem = fs; // See if we get the same filesystem image. console.log("DONE requesting filesystem: " + fileSystem.name); |