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

Unified Diff: Source/modules/filesystem/DOMWindowFileSystem.cpp

Issue 277353002: Use asynchronized api for file system request. [blink] (3/4) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update CL according to changes in CL 289793002. Created 6 years, 7 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: Source/modules/filesystem/DOMWindowFileSystem.cpp
diff --git a/Source/modules/filesystem/DOMWindowFileSystem.cpp b/Source/modules/filesystem/DOMWindowFileSystem.cpp
index c1cf4761ff99eae4bc44e2e79decfca1af0352a7..c4b370ba848f3c933b117d95a76c6403d28d5f9d 100644
--- a/Source/modules/filesystem/DOMWindowFileSystem.cpp
+++ b/Source/modules/filesystem/DOMWindowFileSystem.cpp
@@ -68,7 +68,7 @@ void DOMWindowFileSystem::webkitRequestFileSystem(DOMWindow& window, int type, l
return;
}
- LocalFileSystem::from(*document)->requestFileSystem(document, fileSystemType, size, FileSystemCallbacks::create(successCallback, errorCallback, document, fileSystemType));
+ LocalFileSystem::from(*document)->requestFileSystemAsync(document, fileSystemType, size, FileSystemCallbacks::create(successCallback, errorCallback, document, fileSystemType));
}
void DOMWindowFileSystem::webkitResolveLocalFileSystemURL(DOMWindow& window, const String& url, PassOwnPtr<EntryCallback> successCallback, PassOwnPtr<ErrorCallback> errorCallback)
« no previous file with comments | « no previous file | Source/modules/filesystem/FileSystemClient.h » ('j') | Source/modules/filesystem/LocalFileSystem.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698