| Index: chrome/browser/chromeos/gdata/gdata_operation_registry.cc
|
| diff --git a/chrome/browser/chromeos/gdata/gdata_operation_registry.cc b/chrome/browser/chromeos/gdata/gdata_operation_registry.cc
|
| index 76bef3c70f9b829a75f0ca07c8da49a068406af6..b99a78e1a2c25ce8500a96ddf2283344f14027ff 100644
|
| --- a/chrome/browser/chromeos/gdata/gdata_operation_registry.cc
|
| +++ b/chrome/browser/chromeos/gdata/gdata_operation_registry.cc
|
| @@ -272,11 +272,11 @@ bool GDataOperationRegistry::IsFileTransferOperation(
|
| return type == OPERATION_UPLOAD || type == OPERATION_DOWNLOAD;
|
| }
|
|
|
| -std::vector<GDataOperationRegistry::ProgressStatus>
|
| +GDataOperationRegistry::ProgressStatusList
|
| GDataOperationRegistry::GetProgressStatusList() {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
|
|
| - std::vector<ProgressStatus> status_list;
|
| + ProgressStatusList status_list;
|
| for (OperationIDMap::const_iterator iter(&in_flight_operations_);
|
| !iter.IsAtEnd();
|
| iter.Advance()) {
|
|
|