| Index: components/upload_list/upload_list.h
|
| diff --git a/components/upload_list/upload_list.h b/components/upload_list/upload_list.h
|
| index 30fe26ccb8939f712eaa602e7b82eeb4a3fccf88..27e57344186507cd4c36e0fba17b51752a6f0ad7 100644
|
| --- a/components/upload_list/upload_list.h
|
| +++ b/components/upload_list/upload_list.h
|
| @@ -45,7 +45,13 @@ class UploadList : public base::RefCountedThreadSafe<UploadList> {
|
| const std::string& local_id,
|
| const base::Time& capture_time,
|
| State state);
|
| + // Constructor for locally stored data.
|
| + UploadInfo(const std::string& local_id,
|
| + const base::Time& capture_time,
|
| + State state,
|
| + const base::string16& file_size);
|
| UploadInfo(const std::string& upload_id, const base::Time& upload_time);
|
| + UploadInfo(const UploadInfo& upload_info);
|
| ~UploadInfo();
|
|
|
| // These fields are only valid when |state| == UploadInfo::State::Uploaded.
|
| @@ -60,6 +66,9 @@ class UploadList : public base::RefCountedThreadSafe<UploadList> {
|
| base::Time capture_time;
|
|
|
| State state;
|
| +
|
| + // Formatted file size for locally stored data.
|
| + base::string16 file_size;
|
| };
|
|
|
| class Delegate {
|
|
|