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/save_package.h" | 5 #include "content/browser/download/save_package.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
(...skipping 1376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1387 NotificationService::current()->Notify( | 1387 NotificationService::current()->Notify( |
1388 NOTIFICATION_SAVE_PACKAGE_SUCCESSFULLY_FINISHED, | 1388 NOTIFICATION_SAVE_PACKAGE_SUCCESSFULLY_FINISHED, |
1389 // We use the DownloadManager as the source as that's a | 1389 // We use the DownloadManager as the source as that's a |
1390 // central SavePackage related location that observers can | 1390 // central SavePackage related location that observers can |
1391 // get to if they want to wait for notifications for a | 1391 // get to if they want to wait for notifications for a |
1392 // particular BrowserContext. Alternatively, we could make | 1392 // particular BrowserContext. Alternatively, we could make |
1393 // it come from the WebContents, which would be more specific | 1393 // it come from the WebContents, which would be more specific |
1394 // but less useful to (current) customers. | 1394 // but less useful to (current) customers. |
1395 Source<DownloadManager>(download_manager_), | 1395 Source<DownloadManager>(download_manager_), |
1396 Details<DownloadItem>(download_)); | 1396 Details<DownloadItem>(download_)); |
1397 download_manager_->SavePageDownloadFinished(download_); | |
1398 StopObservation(); | 1397 StopObservation(); |
1399 } | 1398 } |
1400 | 1399 |
1401 } // namespace content | 1400 } // namespace content |
OLD | NEW |