| Index: content/browser/download/save_file_manager.cc
|
| diff --git a/content/browser/download/save_file_manager.cc b/content/browser/download/save_file_manager.cc
|
| index e9aa71c62ab2e8cacdcfd86724f07fe97313afea..14abb510e0c58568f105f68216af1d0f833aa126 100644
|
| --- a/content/browser/download/save_file_manager.cc
|
| +++ b/content/browser/download/save_file_manager.cc
|
| @@ -272,9 +272,8 @@ void SaveFileManager::SaveFinished(int save_id,
|
| SaveFileMap::iterator it = save_file_map_.find(save_id);
|
| if (it != save_file_map_.end()) {
|
| SaveFile* save_file = it->second;
|
| - // This routine may be called twice for the same from from
|
| - // SaveePackage::OnReceivedSerializedHtmlData, once for the file
|
| - // itself, and once when all frames have been serialized.
|
| + // This routine may be called twice from the same SavePackage - once for the
|
| + // file itself, and once when all frames have been serialized.
|
| // So we can't assert that the file is InProgress() here.
|
| // TODO(rdsmith): Fix this logic and put the DCHECK below back in.
|
| // DCHECK(save_file->InProgress());
|
|
|