Index: chrome/browser/chromeos/gdata/gdata_operation_registry.cc |
=================================================================== |
--- chrome/browser/chromeos/gdata/gdata_operation_registry.cc (revision 134777) |
+++ chrome/browser/chromeos/gdata/gdata_operation_registry.cc (working copy) |
@@ -272,11 +272,11 @@ |
return type == OPERATION_UPLOAD || type == OPERATION_DOWNLOAD; |
} |
-GDataOperationRegistry::ProgressStatusList |
+std::vector<GDataOperationRegistry::ProgressStatus> |
GDataOperationRegistry::GetProgressStatusList() { |
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
- ProgressStatusList status_list; |
+ std::vector<ProgressStatus> status_list; |
for (OperationIDMap::const_iterator iter(&in_flight_operations_); |
!iter.IsAtEnd(); |
iter.Advance()) { |