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

Unified Diff: chrome/common/render_messages_params.cc

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_params.h ('k') | chrome/common/webkit_param_traits.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/render_messages_params.cc
diff --git a/chrome/common/render_messages_params.cc b/chrome/common/render_messages_params.cc
index bcd47f65f6592e099740510dc840187b31d6d6f5..4b28b3d27557d26d8faafd6a1a92f5148b8fca34 100644
--- a/chrome/common/render_messages_params.cc
+++ b/chrome/common/render_messages_params.cc
@@ -302,18 +302,6 @@ ViewHostMsg_DomMessage_Params::ViewHostMsg_DomMessage_Params()
ViewHostMsg_DomMessage_Params::~ViewHostMsg_DomMessage_Params() {
}
-ViewHostMsg_OpenFileSystemRequest_Params::
- ViewHostMsg_OpenFileSystemRequest_Params()
- : routing_id(0),
- request_id(0),
- type(WebKit::WebFileSystem::TypeTemporary),
- requested_size(0) {
-}
-
-ViewHostMsg_OpenFileSystemRequest_Params::
- ~ViewHostMsg_OpenFileSystemRequest_Params() {
-}
-
namespace IPC {
// Self contained templates which are only used inside serializing Params
@@ -1800,44 +1788,6 @@ void ParamTraits<ViewHostMsg_DomMessage_Params>::Log(const param_type& p,
l->append(")");
}
-void ParamTraits<ViewHostMsg_OpenFileSystemRequest_Params>::Write(
- Message* m,
- const param_type& p) {
- WriteParam(m, p.routing_id);
- WriteParam(m, p.request_id);
- WriteParam(m, p.origin_url);
- WriteParam(m, p.type);
- WriteParam(m, p.requested_size);
-}
-
-bool ParamTraits<ViewHostMsg_OpenFileSystemRequest_Params>::Read(
- const Message* m,
- void** iter,
- param_type* p) {
- return
- ReadParam(m, iter, &p->routing_id) &&
- ReadParam(m, iter, &p->request_id) &&
- ReadParam(m, iter, &p->origin_url) &&
- ReadParam(m, iter, &p->type) &&
- ReadParam(m, iter, &p->requested_size);
-}
-
-void ParamTraits<ViewHostMsg_OpenFileSystemRequest_Params>::Log(
- const param_type& p,
- std::string* l) {
- l->append("(");
- LogParam(p.routing_id, l);
- l->append(", ");
- LogParam(p.request_id, l);
- l->append(", ");
- LogParam(p.origin_url, l);
- l->append(", ");
- LogParam(p.type, l);
- l->append(", ");
- LogParam(p.requested_size, l);
- l->append(")");
-}
-
void ParamTraits<base::file_util_proxy::Entry>::Write(
Message* m,
const param_type& p) {
« no previous file with comments | « chrome/common/render_messages_params.h ('k') | chrome/common/webkit_param_traits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698