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

Unified Diff: chrome/browser/file_system/file_system_dispatcher_host.h

Issue 3394003: Add Worker support for FileSystem API. (Closed)
Patch Set: '' Created 10 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/browser/file_system/file_system_dispatcher_host.h
diff --git a/chrome/browser/file_system/file_system_dispatcher_host.h b/chrome/browser/file_system/file_system_dispatcher_host.h
index ac22255edd683c8433c0646f8fcb257bc03e59ac..799cf4dff27b85cbee948a6170fc14e314108db8 100644
--- a/chrome/browser/file_system/file_system_dispatcher_host.h
+++ b/chrome/browser/file_system/file_system_dispatcher_host.h
@@ -13,10 +13,13 @@
#include "base/platform_file.h"
#include "base/scoped_callback_factory.h"
#include "base/ref_counted.h"
-#include "chrome/common/render_messages.h"
+#include "ipc/ipc_message.h"
#include "webkit/fileapi/file_system_operation.h"
+#include "webkit/fileapi/file_system_types.h"
+class ChromeFileSystemOperation;
class FileSystemHostContext;
+class GURL;
class HostContentSettingsMap;
class Receiver;
class ResourceMessageFilter;
@@ -33,7 +36,10 @@ class FileSystemDispatcherHost
bool OnMessageReceived(const IPC::Message& message, bool* message_was_ok);
- void OnOpenFileSystem(const ViewHostMsg_OpenFileSystemRequest_Params&);
+ void OnOpenFileSystem(int request_id,
+ const GURL& origin_url,
+ fileapi::FileSystemType type,
+ int64 requested_size);
void OnMove(int request_id,
const FilePath& src_path,
const FilePath& dest_path);

Powered by Google App Engine
This is Rietveld 408576698