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 009c0269095df51a72ef5171676d93818a5a94f1..05992fed84751ad0ceec2dab0b323969da684ff7 100644 |
--- a/chrome/browser/google_apis/test_util.cc |
+++ b/chrome/browser/google_apis/test_util.cc |
@@ -117,6 +117,15 @@ void CopyResultsFromGetAccountMetadataCallback( |
*error_out = error_in; |
} |
+void CopyResultsFromDownloadActionCallback( |
+ GDataErrorCode* error_out, |
+ FilePath* temp_file_out, |
+ GDataErrorCode error_in, |
+ const FilePath& temp_file_in) { |
+ *error_out = error_in; |
+ *temp_file_out = temp_file_in; |
+} |
+ |
// Returns a HttpResponse created from the given file path. |
scoped_ptr<test_server::HttpResponse> CreateHttpResponseFromFile( |
const FilePath& file_path) { |