| Index: content/browser/download/base_file.cc
 | 
| diff --git a/content/browser/download/base_file.cc b/content/browser/download/base_file.cc
 | 
| index 456454814c1427c9f15f78cc6ae197cb53c121c1..5c27adeb3dd42c9f481e715d5665e0ba4dfd84ac 100644
 | 
| --- a/content/browser/download/base_file.cc
 | 
| +++ b/content/browser/download/base_file.cc
 | 
| @@ -510,7 +510,7 @@ net::Error BaseFile::Open() {
 | 
|  
 | 
|      // We may be re-opening the file after rename. Always make sure we're
 | 
|      // writing at the end of the file.
 | 
| -    int64 seek_result = file_stream_->Seek(net::FROM_END, 0);
 | 
| +    int64 seek_result = file_stream_->SeekSync(net::FROM_END, 0);
 | 
|      if (seek_result < 0)
 | 
|        return ClearStream(LOG_ERROR("Seek", seek_result));
 | 
|    } else {
 | 
| 
 |