OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_COMMON_RENDER_MESSAGES_H_ | 5 #ifndef CHROME_COMMON_RENDER_MESSAGES_H_ |
6 #define CHROME_COMMON_RENDER_MESSAGES_H_ | 6 #define CHROME_COMMON_RENDER_MESSAGES_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 #include <map> | 10 #include <map> |
(...skipping 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1098 if (!ReadParam(m, iter, &type)) | 1098 if (!ReadParam(m, iter, &type)) |
1099 return false; | 1099 return false; |
1100 if (type == net::UploadData::TYPE_BYTES) { | 1100 if (type == net::UploadData::TYPE_BYTES) { |
1101 const char* data; | 1101 const char* data; |
1102 int len; | 1102 int len; |
1103 if (!m->ReadData(iter, &data, &len)) | 1103 if (!m->ReadData(iter, &data, &len)) |
1104 return false; | 1104 return false; |
1105 r->SetToBytes(data, len); | 1105 r->SetToBytes(data, len); |
1106 } else { | 1106 } else { |
1107 DCHECK(type == net::UploadData::TYPE_FILE); | 1107 DCHECK(type == net::UploadData::TYPE_FILE); |
1108 std::wstring file_path; | 1108 FilePath file_path; |
1109 uint64 offset, length; | 1109 uint64 offset, length; |
1110 if (!ReadParam(m, iter, &file_path)) | 1110 if (!ReadParam(m, iter, &file_path)) |
1111 return false; | 1111 return false; |
1112 if (!ReadParam(m, iter, &offset)) | 1112 if (!ReadParam(m, iter, &offset)) |
1113 return false; | 1113 return false; |
1114 if (!ReadParam(m, iter, &length)) | 1114 if (!ReadParam(m, iter, &length)) |
1115 return false; | 1115 return false; |
1116 r->SetToFilePathRange(file_path, offset, length); | 1116 r->SetToFilePathRange(file_path, offset, length); |
1117 } | 1117 } |
1118 return true; | 1118 return true; |
(...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1779 } | 1779 } |
1780 }; | 1780 }; |
1781 | 1781 |
1782 } // namespace IPC | 1782 } // namespace IPC |
1783 | 1783 |
1784 | 1784 |
1785 #define MESSAGES_INTERNAL_FILE "chrome/common/render_messages_internal.h" | 1785 #define MESSAGES_INTERNAL_FILE "chrome/common/render_messages_internal.h" |
1786 #include "chrome/common/ipc_message_macros.h" | 1786 #include "chrome/common/ipc_message_macros.h" |
1787 | 1787 |
1788 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ | 1788 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ |
OLD | NEW |