summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_app_api.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions/extension_app_api.cc')
-rw-r--r--chrome/browser/extensions/extension_app_api.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/extensions/extension_app_api.cc b/chrome/browser/extensions/extension_app_api.cc
index d89526c..dd7506c 100644
--- a/chrome/browser/extensions/extension_app_api.cc
+++ b/chrome/browser/extensions/extension_app_api.cc
@@ -72,8 +72,8 @@ bool AppNotifyFunction::RunImpl() {
NotificationService::current()->Notify(
chrome::NOTIFICATION_APP_NOTIFICATION_STATE_CHANGED,
- Source<Profile>(profile_),
- Details<const std::string>(&id));
+ content::Source<Profile>(profile_),
+ content::Details<const std::string>(&id));
return true;
}
@@ -94,7 +94,7 @@ bool AppClearAllNotificationsFunction::RunImpl() {
manager->ClearAll(id);
NotificationService::current()->Notify(
chrome::NOTIFICATION_APP_NOTIFICATION_STATE_CHANGED,
- Source<Profile>(profile_),
- Details<const std::string>(&id));
+ content::Source<Profile>(profile_),
+ content::Details<const std::string>(&id));
return true;
}