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

Unified Diff: net/base/upload_data.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/base/net_util_unittest.cc ('k') | net/base/upload_data_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/upload_data.h
diff --git a/net/base/upload_data.h b/net/base/upload_data.h
index 231b40b485b92e578625d54bf38994d060755b02..56a133946ab76fc2cff03843da3d8874be1e6cd2 100644
--- a/net/base/upload_data.h
+++ b/net/base/upload_data.h
@@ -8,6 +8,7 @@
#include <string>
#include <vector>
+#include "base/file_path.h"
#include "base/ref_counted.h"
namespace net {
@@ -29,7 +30,7 @@ class UploadData : public base::RefCounted<UploadData> {
Type type() const { return type_; }
const std::vector<char>& bytes() const { return bytes_; }
- const std::wstring& file_path() const { return file_path_; }
+ const FilePath& file_path() const { return file_path_; }
uint64 file_range_offset() const { return file_range_offset_; }
uint64 file_range_length() const { return file_range_length_; }
@@ -38,11 +39,11 @@ class UploadData : public base::RefCounted<UploadData> {
bytes_.assign(bytes, bytes + bytes_len);
}
- void SetToFilePath(const std::wstring& path) {
+ void SetToFilePath(const FilePath& path) {
SetToFilePathRange(path, 0, kuint64max);
}
- void SetToFilePathRange(const std::wstring& path,
+ void SetToFilePathRange(const FilePath& path,
uint64 offset, uint64 length) {
type_ = TYPE_FILE;
file_path_ = path;
@@ -57,7 +58,7 @@ class UploadData : public base::RefCounted<UploadData> {
private:
Type type_;
std::vector<char> bytes_;
- std::wstring file_path_;
+ FilePath file_path_;
uint64 file_range_offset_;
uint64 file_range_length_;
};
@@ -69,12 +70,12 @@ class UploadData : public base::RefCounted<UploadData> {
}
}
- void AppendFile(const std::wstring& file_path) {
+ void AppendFile(const FilePath& file_path) {
elements_.push_back(Element());
elements_.back().SetToFilePath(file_path);
}
- void AppendFileRange(const std::wstring& file_path,
+ void AppendFileRange(const FilePath& file_path,
uint64 offset, uint64 length) {
elements_.push_back(Element());
elements_.back().SetToFilePathRange(file_path, offset, length);
« no previous file with comments | « net/base/net_util_unittest.cc ('k') | net/base/upload_data_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698