summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_bookmarks_module.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions/extension_bookmarks_module.cc')
-rw-r--r--chrome/browser/extensions/extension_bookmarks_module.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/extensions/extension_bookmarks_module.cc b/chrome/browser/extensions/extension_bookmarks_module.cc
index 3e1d22c..21f6607 100644
--- a/chrome/browser/extensions/extension_bookmarks_module.cc
+++ b/chrome/browser/extensions/extension_bookmarks_module.cc
@@ -89,8 +89,8 @@ void BookmarksFunction::Run() {
if (success) {
NotificationService::current()->Notify(
chrome::NOTIFICATION_EXTENSION_BOOKMARKS_API_INVOKED,
- Source<const Extension>(GetExtension()),
- Details<const BookmarksFunction>(this));
+ content::Source<const Extension>(GetExtension()),
+ content::Details<const BookmarksFunction>(this));
}
SendResponse(success);
}
@@ -112,10 +112,10 @@ bool BookmarksFunction::EditBookmarksEnabled() {
}
void BookmarksFunction::Observe(int type,
- const NotificationSource& source,
- const NotificationDetails& details) {
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) {
DCHECK(type == chrome::NOTIFICATION_BOOKMARK_MODEL_LOADED);
- Profile* source_profile = Source<Profile>(source).ptr();
+ Profile* source_profile = content::Source<Profile>(source).ptr();
if (!source_profile || !source_profile->IsSameProfile(profile()))
return;