Index: chrome/browser/sync/glue/session_model_associator.cc |
=================================================================== |
--- chrome/browser/sync/glue/session_model_associator.cc (revision 106380) |
+++ chrome/browser/sync/glue/session_model_associator.cc (working copy) |
@@ -28,7 +28,7 @@ |
#include "chrome/common/chrome_notification_types.h" |
#include "chrome/common/url_constants.h" |
#include "content/browser/tab_contents/navigation_entry.h" |
-#include "content/common/notification_service.h" |
+#include "content/public/browser/notification_service.h" |
#include "content/public/browser/notification_details.h" |
#if defined(OS_LINUX) |
#include "base/linux_util.h" |
@@ -533,10 +533,10 @@ |
// There is no local model stored with which to disassociate, just notify |
// foreign session handlers. |
- NotificationService::current()->Notify( |
+ content::NotificationService::current()->Notify( |
chrome::NOTIFICATION_FOREIGN_SESSION_DISABLED, |
content::Source<Profile>(sync_service_->profile()), |
- NotificationService::NoDetails()); |
+ content::NotificationService::NoDetails()); |
return true; |
} |