Index: chrome/browser/ui/webui/sync_promo_handler.cc |
=================================================================== |
--- chrome/browser/ui/webui/sync_promo_handler.cc (revision 106380) |
+++ chrome/browser/ui/webui/sync_promo_handler.cc (working copy) |
@@ -20,7 +20,7 @@ |
#include "chrome/common/pref_names.h" |
#include "chrome/common/url_constants.h" |
#include "content/browser/tab_contents/tab_contents.h" |
-#include "content/common/notification_service.h" |
+#include "content/public/browser/notification_service.h" |
#include "content/public/browser/notification_details.h" |
SyncPromoHandler::SyncPromoHandler(ProfileManager* profile_manager) |
@@ -53,7 +53,7 @@ |
&web_ui->tab_contents()->controller())); |
// Listen to see if the window we're in gets closed. |
registrar_.Add(this, chrome::NOTIFICATION_BROWSER_CLOSING, |
- NotificationService::AllSources()); |
+ content::NotificationService::AllSources()); |
} |
return SyncSetupHandler::Attach(web_ui); |
} |