diff options
Diffstat (limited to 'content/browser/download')
-rw-r--r-- | content/browser/download/download_manager.cc | 4 | ||||
-rw-r--r-- | content/browser/download/mhtml_generation_manager.cc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/content/browser/download/download_manager.cc b/content/browser/download/download_manager.cc index c875a56..7f31385 100644 --- a/content/browser/download/download_manager.cc +++ b/content/browser/download/download_manager.cc @@ -31,8 +31,8 @@ #include "content/browser/renderer_host/render_view_host.h" #include "content/browser/renderer_host/resource_dispatcher_host.h" #include "content/browser/tab_contents/tab_contents.h" -#include "content/common/notification_service.h" #include "content/public/browser/content_browser_client.h" +#include "content/public/browser/notification_service.h" #include "content/public/browser/notification_types.h" namespace { @@ -1073,7 +1073,7 @@ void DownloadManager::SavePageDownloadFinished(DownloadItem* download) { save_page_downloads_.erase(download->id()); if (download->IsComplete()) - NotificationService::current()->Notify( + content::NotificationService::current()->Notify( content::NOTIFICATION_SAVE_PACKAGE_SUCCESSFULLY_FINISHED, content::Source<DownloadManager>(this), content::Details<DownloadItem>(download)); diff --git a/content/browser/download/mhtml_generation_manager.cc b/content/browser/download/mhtml_generation_manager.cc index 2802c24..3c8f76c 100644 --- a/content/browser/download/mhtml_generation_manager.cc +++ b/content/browser/download/mhtml_generation_manager.cc @@ -8,7 +8,7 @@ #include "content/browser/renderer_host/render_process_host.h" #include "content/browser/renderer_host/render_view_host.h" #include "content/browser/tab_contents/tab_contents.h" -#include "content/common/notification_service.h" +#include "content/public/browser/notification_service.h" #include "content/common/view_messages.h" #include "content/public/browser/notification_types.h" @@ -113,7 +113,7 @@ void MHTMLGenerationManager::JobFinished(int job_id, int64 file_size) { details.file_path = job.file_path; details.file_size = file_size; - NotificationService::current()->Notify( + content::NotificationService::current()->Notify( content::NOTIFICATION_MHTML_GENERATED, content::Source<RenderViewHost>(rvh), content::Details<NotificationDetails>(&details)); |