Index: chrome/test/automation/automation_proxy.cc |
diff --git a/chrome/test/automation/automation_proxy.cc b/chrome/test/automation/automation_proxy.cc |
index 5c12a709df1d1cb039a791cf7e18d583dae0ebfd..4704deb243ae1655e795bca3dba10bd41508cac1 100644 |
--- a/chrome/test/automation/automation_proxy.cc |
+++ b/chrome/test/automation/automation_proxy.cc |
@@ -235,10 +235,10 @@ bool AutomationProxy::SavePackageShouldPromptUser(bool should_prompt) { |
} |
scoped_refptr<ExtensionProxy> AutomationProxy::InstallExtension( |
- const FilePath& crx_file, bool with_ui) { |
+ const FilePath& extension_path, bool with_ui) { |
int handle = 0; |
- if (!Send(new AutomationMsg_InstallExtensionAndGetHandle(crx_file, with_ui, |
- &handle))) |
+ if (!Send(new AutomationMsg_InstallExtension(extension_path, |
+ with_ui, &handle))) |
return NULL; |
return ProxyObjectFromHandle<ExtensionProxy>(handle); |