| Index: chrome/browser/automation/testing_automation_provider.cc
|
| diff --git a/chrome/browser/automation/testing_automation_provider.cc b/chrome/browser/automation/testing_automation_provider.cc
|
| index 96c52ec43eeec38178b137c5f7787069537dd520..c6570da6b3d78d2431cfdc85173afc3938d03167 100644
|
| --- a/chrome/browser/automation/testing_automation_provider.cc
|
| +++ b/chrome/browser/automation/testing_automation_provider.cc
|
| @@ -37,7 +37,7 @@
|
| #include "chrome/browser/download/download_prefs.h"
|
| #include "chrome/browser/download/download_shelf.h"
|
| #include "chrome/browser/extensions/extension_host.h"
|
| -#include "chrome/browser/extensions/extensions_service.h"
|
| +#include "chrome/browser/extensions/extension_service.h"
|
| #include "chrome/browser/history/top_sites.h"
|
| #include "chrome/browser/importer/importer.h"
|
| #include "chrome/browser/notifications/balloon.h"
|
| @@ -3690,7 +3690,7 @@ void TestingAutomationProvider::GetExtensionsInfo(
|
| DictionaryValue* args,
|
| IPC::Message* reply_message) {
|
| AutomationJSONReply reply(this, reply_message);
|
| - ExtensionsService* service = profile()->GetExtensionsService();
|
| + ExtensionService* service = profile()->GetExtensionService();
|
| if (!service) {
|
| reply.SendError("No extensions service.");
|
| }
|
| @@ -3729,7 +3729,7 @@ void TestingAutomationProvider::UninstallExtensionById(
|
| reply.SendError("Must include string id.");
|
| return;
|
| }
|
| - ExtensionsService* service = profile()->GetExtensionsService();
|
| + ExtensionService* service = profile()->GetExtensionService();
|
| if (!service) {
|
| reply.SendError("No extensions service.");
|
| return;
|
|
|