diff options
Diffstat (limited to 'content/browser/download/mhtml_generation_manager.cc')
-rw-r--r-- | content/browser/download/mhtml_generation_manager.cc | 4 |
1 files changed, 2 insertions, 2 deletions
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)); |