diff options
author | dtu@chromium.org <dtu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-04 21:05:27 +0000 |
---|---|---|
committer | dtu@chromium.org <dtu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-04 21:05:27 +0000 |
commit | 7457cb3cfe3272ca84c854a8713a7ff1ca61025b (patch) | |
tree | 976d4b692249e06cd7aafe6b4bd6f8e02b25df25 /chrome/browser/automation/automation_provider.h | |
parent | 14bb336e4be8a0e230950c068ce66db41105ba76 (diff) | |
download | chromium_src-7457cb3cfe3272ca84c854a8713a7ff1ca61025b.zip chromium_src-7457cb3cfe3272ca84c854a8713a7ff1ca61025b.tar.gz chromium_src-7457cb3cfe3272ca84c854a8713a7ff1ca61025b.tar.bz2 |
Refactor: Make PyAuto InstallExtension() take a string. Delete dead code.
BUG=chromium:86890
TEST=Run the modified PyAuto tests on all platforms.
Review URL: http://codereview.chromium.org/7548024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95490 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/automation/automation_provider.h')
-rw-r--r-- | chrome/browser/automation/automation_provider.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/chrome/browser/automation/automation_provider.h b/chrome/browser/automation/automation_provider.h index e907150..b389b88 100644 --- a/chrome/browser/automation/automation_provider.h +++ b/chrome/browser/automation/automation_provider.h @@ -250,14 +250,11 @@ class AutomationProvider // for information on the arguments. void JavaScriptStressTestControl(int handle, int cmd, int param); - void InstallExtension(const FilePath& crx_path, - IPC::Message* reply_message); - void WaitForExtensionTestResult(IPC::Message* reply_message); - void InstallExtensionAndGetHandle(const FilePath& crx_path, - bool with_ui, - IPC::Message* reply_message); + void InstallExtension(const FilePath& extension_path, + bool with_ui, + IPC::Message* reply_message); void UninstallExtension(int extension_handle, bool* success); |