Index: chrome/browser/ui/global_error_service.cc |
=================================================================== |
--- chrome/browser/ui/global_error_service.cc (revision 106380) |
+++ chrome/browser/ui/global_error_service.cc (working copy) |
@@ -9,7 +9,7 @@ |
#include "base/stl_util.h" |
#include "chrome/browser/ui/global_error.h" |
#include "chrome/common/chrome_notification_types.h" |
-#include "content/common/notification_service.h" |
+#include "content/public/browser/notification_service.h" |
GlobalErrorService::GlobalErrorService(Profile* profile) : profile_(profile) { |
} |
@@ -60,7 +60,7 @@ |
} |
void GlobalErrorService::NotifyErrorsChanged(GlobalError* error) { |
- NotificationService::current()->Notify( |
+ content::NotificationService::current()->Notify( |
chrome::NOTIFICATION_GLOBAL_ERRORS_CHANGED, |
content::Source<Profile>(profile_), |
content::Details<GlobalError>(error)); |