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

Side by Side Diff: chrome/common/render_messages.h

Issue 63011: Monster FilePath patch! (Closed)
Patch Set: sync with trunk Created 11 years, 8 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 unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/views/constrained_window_impl_interactive_uitest.cc ('k') | chrome/common/render_messages_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698