| Index: chrome/browser/google_apis/test_util.cc
|
| diff --git a/chrome/browser/google_apis/test_util.cc b/chrome/browser/google_apis/test_util.cc
|
| index e2f37ac0380f0b8a405e570ae252578d4203699a..27d395767bd5e6f8b2131308b5c218271e2861f5 100644
|
| --- a/chrome/browser/google_apis/test_util.cc
|
| +++ b/chrome/browser/google_apis/test_util.cc
|
| @@ -196,5 +196,11 @@ bool ParseContentRangeHeader(const std::string& value,
|
| base::StringToInt64(parts[1], end_position));
|
| }
|
|
|
| +void AppendProgressCallbackResult(std::vector<ProgressInfo>* progress_values,
|
| + int64 progress,
|
| + int64 total) {
|
| + progress_values->push_back(ProgressInfo(progress, total));
|
| +}
|
| +
|
| } // namespace test_util
|
| } // namespace google_apis
|
|
|