Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4384)

Unified Diff: chrome/test/automation/automation_proxy.cc

Issue 7548024: Refactor: Make PyAuto InstallExtension() take a string. Delete dead code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixup per kkania. Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/automation/automation_proxy.h ('k') | chrome/test/functional/chromeos_security.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « chrome/test/automation/automation_proxy.h ('k') | chrome/test/functional/chromeos_security.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698