summaryrefslogtreecommitdiffstats
path: root/chrome/common/file_system/file_system_dispatcher.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/file_system/file_system_dispatcher.cc')
-rw-r--r--chrome/common/file_system/file_system_dispatcher.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/chrome/common/file_system/file_system_dispatcher.cc b/chrome/common/file_system/file_system_dispatcher.cc
index dfe23bf..352deb3 100644
--- a/chrome/common/file_system/file_system_dispatcher.cc
+++ b/chrome/common/file_system/file_system_dispatcher.cc
@@ -41,10 +41,11 @@ bool FileSystemDispatcher::OnMessageReceived(const IPC::Message& msg) {
bool FileSystemDispatcher::OpenFileSystem(
const GURL& origin_url, fileapi::FileSystemType type,
- long long size, fileapi::FileSystemCallbackDispatcher* dispatcher) {
+ long long size, bool create,
+ fileapi::FileSystemCallbackDispatcher* dispatcher) {
int request_id = dispatchers_.Add(dispatcher);
if (!ChildThread::current()->Send(new ViewHostMsg_OpenFileSystemRequest(
- request_id, origin_url, type, size))) {
+ request_id, origin_url, type, size, create))) {
dispatchers_.Remove(request_id); // destroys |dispatcher|
return false;
}
@@ -247,7 +248,7 @@ void FileSystemDispatcher::DidReadMetadata(
void FileSystemDispatcher::DidReadDirectory(
int request_id,
- const std::vector<base::file_util_proxy::Entry>& entries,
+ const std::vector<base::FileUtilProxy::Entry>& entries,
bool has_more) {
fileapi::FileSystemCallbackDispatcher* dispatcher =
dispatchers_.Lookup(request_id);