Index: chrome/browser/automation/automation_extension_tracker.cc |
diff --git a/chrome/browser/automation/automation_extension_tracker.cc b/chrome/browser/automation/automation_extension_tracker.cc |
index 6a567fa6b8b9d445db14e2d2fde32ef6ee0b590a..18a480d9b96420516a1bbd3015c28d9b3729de0d 100644 |
--- a/chrome/browser/automation/automation_extension_tracker.cc |
+++ b/chrome/browser/automation/automation_extension_tracker.cc |
@@ -3,7 +3,7 @@ |
// found in the LICENSE file. |
#include "chrome/browser/automation/automation_extension_tracker.h" |
-#include "chrome/browser/extensions/extensions_service.h" |
+#include "chrome/browser/extensions/extension_service.h" |
#include "chrome/browser/profiles/profile.h" |
#include "chrome/common/extensions/extension.h" |
#include "chrome/common/notification_service.h" |
@@ -34,7 +34,7 @@ void AutomationExtensionTracker::Observe(NotificationType type, |
const Extension* extension = Details<const Extension>(details).ptr(); |
Profile* profile = Source<Profile>(source).ptr(); |
if (profile) { |
- ExtensionsService* service = profile->GetExtensionsService(); |
+ ExtensionService* service = profile->GetExtensionService(); |
if (service) { |
// Remove this extension only if it is uninstalled, not just disabled. |
// If it is being uninstalled, the extension will not be in the regular |