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

Unified Diff: chrome/browser/resources/file_manager/js/mock_chrome.js

Issue 6895008: Merge 82577 - FileManager: assorted fixes* Switch webkitRequestFileSystem/webkitResolveLocalFileS... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/742/src/
Patch Set: Created 9 years, 8 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
« no previous file with comments | « chrome/browser/resources/file_manager/js/harness.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/file_manager/js/mock_chrome.js
===================================================================
--- chrome/browser/resources/file_manager/js/mock_chrome.js (revision 82590)
+++ chrome/browser/resources/file_manager/js/mock_chrome.js (working copy)
@@ -15,9 +15,9 @@
* --unlimited-quota-for-files in order for this to work.
*/
requestLocalFileSystem: function(callback) {
- window.requestFileSystem(window.PERSISTENT, 16 * 1024 * 1024,
- callback,
- util.ferr('Error requesting filesystem'));
+ window.webkitRequestFileSystem(window.PERSISTENT, 16 * 1024 * 1024,
+ callback,
+ util.ferr('Error requesting filesystem'));
},
/**
« no previous file with comments | « chrome/browser/resources/file_manager/js/harness.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698