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

Unified Diff: chrome/common/render_messages_params.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
« no previous file with comments | « chrome/common/render_messages_internal.h ('k') | chrome/common/render_messages_params.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/render_messages_params.h
diff --git a/chrome/common/render_messages_params.h b/chrome/common/render_messages_params.h
index 0af173ec5d2fee6b1d208fe2031aad798660be25..aa1d85c76b7880b79328878e0fd0de1c7f22b7a5 100644
--- a/chrome/common/render_messages_params.h
+++ b/chrome/common/render_messages_params.h
@@ -30,7 +30,6 @@
#include "googleurl/src/gurl.h"
#include "ipc/ipc_param_traits.h"
#include "media/audio/audio_parameters.h"
-#include "third_party/WebKit/WebKit/chromium/public/WebFileSystem.h"
#include "third_party/WebKit/WebKit/chromium/public/WebTextDirection.h"
#include "webkit/glue/password_form.h"
#include "webkit/glue/plugins/webplugin.h"
@@ -969,26 +968,6 @@ struct ViewHostMsg_DomMessage_Params {
bool user_gesture;
};
-struct ViewHostMsg_OpenFileSystemRequest_Params {
- ViewHostMsg_OpenFileSystemRequest_Params();
- ~ViewHostMsg_OpenFileSystemRequest_Params();
-
- // The routing ID of the view initiating the request.
- int routing_id;
-
- // The response should have this id.
- int request_id;
-
- // The origin doing the initiating.
- GURL origin_url;
-
- // The requested FileSystem type.
- WebKit::WebFileSystem::Type type;
-
- // Indicates how much storage space (in bytes) the caller expects to need.
- int64 requested_size;
-};
-
struct ViewHostMsg_AccessibilityNotification_Params {
enum NotificationType {
// The node checked state has changed.
@@ -1270,14 +1249,6 @@ struct ParamTraits<ViewHostMsg_DomMessage_Params> {
};
template <>
-struct ParamTraits<ViewHostMsg_OpenFileSystemRequest_Params> {
- typedef ViewHostMsg_OpenFileSystemRequest_Params param_type;
- static void Write(Message* m, const param_type& p);
- static bool Read(const Message* m, void** iter, param_type* p);
- static void Log(const param_type& p, std::string* l);
-};
-
-template <>
struct ParamTraits<base::file_util_proxy::Entry> {
typedef base::file_util_proxy::Entry param_type;
static void Write(Message* m, const param_type& p);
« no previous file with comments | « chrome/common/render_messages_internal.h ('k') | chrome/common/render_messages_params.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698