| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/browser/download/download_file_manager.h" | 5 #include "content/browser/download/download_file_manager.h" |
| 6 | 6 |
| 7 #include <set> | 7 #include <set> |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 DownloadFile* download_file = downloads_[global_id]; | 218 DownloadFile* download_file = downloads_[global_id]; |
| 219 | 219 |
| 220 VLOG(20) << " " << __FUNCTION__ << "()" | 220 VLOG(20) << " " << __FUNCTION__ << "()" |
| 221 << " id = " << global_id | 221 << " id = " << global_id |
| 222 << " download_file = " << download_file->DebugString(); | 222 << " download_file = " << download_file->DebugString(); |
| 223 | 223 |
| 224 downloads_.erase(global_id); | 224 downloads_.erase(global_id); |
| 225 | 225 |
| 226 delete download_file; | 226 delete download_file; |
| 227 } | 227 } |
| OLD | NEW |