Index: chrome/browser/ui/gtk/bookmarks/bookmark_bubble_gtk.cc |
=================================================================== |
--- chrome/browser/ui/gtk/bookmarks/bookmark_bubble_gtk.cc (revision 106380) |
+++ chrome/browser/ui/gtk/bookmarks/bookmark_bubble_gtk.cc (working copy) |
@@ -24,7 +24,7 @@ |
#include "chrome/browser/ui/gtk/gtk_util.h" |
#include "chrome/common/chrome_notification_types.h" |
#include "content/browser/user_metrics.h" |
-#include "content/common/notification_service.h" |
+#include "content/public/browser/notification_service.h" |
#include "grit/generated_resources.h" |
#include "ui/base/gtk/gtk_hig_constants.h" |
#include "ui/base/l10n/l10n_util.h" |
@@ -59,10 +59,10 @@ |
apply_edits_ = false; |
} |
- NotificationService::current()->Notify( |
+ content::NotificationService::current()->Notify( |
chrome::NOTIFICATION_BOOKMARK_BUBBLE_HIDDEN, |
content::Source<Profile>(profile_->GetOriginalProfile()), |
- NotificationService::NoDetails()); |
+ content::NotificationService::NoDetails()); |
} |
void BookmarkBubbleGtk::Observe(int type, |