Index: chrome/browser/notifications/notification_options_menu_model.cc |
diff --git a/chrome/browser/notifications/notification_options_menu_model.cc b/chrome/browser/notifications/notification_options_menu_model.cc |
index 126e5ff8168205f354227741a40174463063dca5..a1003972ca9abec8de47e569d3767f3aeac29094 100644 |
--- a/chrome/browser/notifications/notification_options_menu_model.cc |
+++ b/chrome/browser/notifications/notification_options_menu_model.cc |
@@ -8,7 +8,7 @@ |
#include "base/compiler_specific.h" |
#include "base/logging.h" |
#include "chrome/browser/browser_list.h" |
-#include "chrome/browser/extensions/extensions_service.h" |
+#include "chrome/browser/extensions/extension_service.h" |
#include "chrome/browser/notifications/desktop_notification_service.h" |
#include "chrome/browser/notifications/notification.h" |
#include "chrome/browser/notifications/notifications_prefs_cache.h" |
@@ -72,8 +72,8 @@ string16 NotificationOptionsMenuModel::GetLabelForCommandId(int command_id) |
DesktopNotificationService* service = |
balloon_->profile()->GetDesktopNotificationService(); |
if (origin.SchemeIs(chrome::kExtensionScheme)) { |
- ExtensionsService* ext_service = |
- balloon_->profile()->GetExtensionsService(); |
+ ExtensionService* ext_service = |
+ balloon_->profile()->GetExtensionService(); |
const Extension* extension = ext_service->GetExtensionByURL(origin); |
if (extension) { |
ExtensionPrefs* extension_prefs = ext_service->extension_prefs(); |
@@ -121,8 +121,8 @@ bool NotificationOptionsMenuModel::GetAcceleratorForCommandId( |
void NotificationOptionsMenuModel::ExecuteCommand(int command_id) { |
DesktopNotificationService* service = |
balloon_->profile()->GetDesktopNotificationService(); |
- ExtensionsService* ext_service = |
- balloon_->profile()->GetExtensionsService(); |
+ ExtensionService* ext_service = |
+ balloon_->profile()->GetExtensionService(); |
const GURL& origin = balloon_->notification().origin_url(); |
switch (command_id) { |
case kTogglePermissionCommand: |