| Index: chrome/browser/chromeos/drive/drive_scheduler.h
|
| diff --git a/chrome/browser/chromeos/drive/drive_scheduler.h b/chrome/browser/chromeos/drive/drive_scheduler.h
|
| index a1030d175fc8bc37cee339540845330f21dd828c..1e59d31eb84a749fee780febb3e3b6996c651fba 100644
|
| --- a/chrome/browser/chromeos/drive/drive_scheduler.h
|
| +++ b/chrome/browser/chromeos/drive/drive_scheduler.h
|
| @@ -182,8 +182,10 @@ class DriveScheduler
|
| // Online and cache path of the operation's target.
|
| // Used by:
|
| // TYPE_DOWNLOAD_FILE
|
| - base::FilePath virtual_path;
|
| - base::FilePath local_cache_path;
|
| + // TYPE_UPLOAD_NEW_FILE
|
| + // TYPE_UPLOAD_EXISTING_FILE
|
| + base::FilePath drive_file_path;
|
| + base::FilePath local_file_path;
|
|
|
| // Parameter to get change list.
|
| // Used by:
|
| @@ -272,8 +274,6 @@ class DriveScheduler
|
| // Used by:
|
| // TYPE_UPLOAD_NEW_FILE
|
| // TYPE_UPLOAD_EXISTING_FILE
|
| - base::FilePath drive_file_path;
|
| - base::FilePath local_file_path;
|
| std::string content_type;
|
| std::string etag;
|
| std::string title;
|
| @@ -360,6 +360,9 @@ class DriveScheduler
|
| const base::FilePath& file_path,
|
| scoped_ptr<google_apis::ResourceEntry> resource_entry);
|
|
|
| + // Updates the progress status of the specified job.
|
| + void UpdateProgress(JobID job_id, int64 progress, int64 total);
|
| +
|
| // net::NetworkChangeNotifier::ConnectionTypeObserver override.
|
| virtual void OnConnectionTypeChanged(
|
| net::NetworkChangeNotifier::ConnectionType type) OVERRIDE;
|
|
|