diff options
Diffstat (limited to 'chrome/browser/plugin_prefs.cc')
-rw-r--r-- | chrome/browser/plugin_prefs.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/plugin_prefs.cc b/chrome/browser/plugin_prefs.cc index 5e76865..27c30c2 100644 --- a/chrome/browser/plugin_prefs.cc +++ b/chrome/browser/plugin_prefs.cc @@ -30,7 +30,7 @@ #include "chrome/common/pref_names.h" #include "content/browser/browser_thread.h" #include "content/browser/plugin_service.h" -#include "content/common/notification_service.h" +#include "content/public/browser/notification_service.h" #include "webkit/plugins/npapi/plugin_group.h" #include "webkit/plugins/npapi/plugin_list.h" #include "webkit/plugins/webplugininfo.h" @@ -540,8 +540,8 @@ void PluginPrefs::OnUpdatePreferences( void PluginPrefs::NotifyPluginStatusChanged() { DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); - NotificationService::current()->Notify( + content::NotificationService::current()->Notify( chrome::NOTIFICATION_PLUGIN_ENABLE_STATUS_CHANGED, content::Source<Profile>(profile_), - NotificationService::NoDetails()); + content::NotificationService::NoDetails()); } |