| Index: chrome/test/pyautolib/pyautolib.cc
|
| diff --git a/chrome/test/pyautolib/pyautolib.cc b/chrome/test/pyautolib/pyautolib.cc
|
| index 1825a0969300fc1504850a53bd4a33bfbfd2c616..cc758324d1560c204159afb8d6cbe1725078a2df 100644
|
| --- a/chrome/test/pyautolib/pyautolib.cc
|
| +++ b/chrome/test/pyautolib/pyautolib.cc
|
| @@ -9,7 +9,6 @@
|
| #include "base/string_util.h"
|
| #include "base/utf_string_conversions.h"
|
| #include "chrome/test/automation/automation_proxy.h"
|
| -#include "chrome/test/automation/extension_proxy.h"
|
| #include "chrome/test/automation/tab_proxy.h"
|
| #include "chrome/test/pyautolib/pyautolib.h"
|
| #include "googleurl/src/gurl.h"
|
| @@ -216,21 +215,6 @@ int PyUITestBase::GetBrowserWindowCount() {
|
| return num_windows;
|
| }
|
|
|
| -std::string PyUITestBase::InstallExtension(const std::string& extension_path,
|
| - bool with_ui) {
|
| -#if defined(OS_WIN)
|
| - FilePath extension_file_path = FilePath(ASCIIToWide(extension_path));
|
| -#else
|
| - FilePath extension_file_path = FilePath(extension_path);
|
| -#endif
|
| - scoped_refptr<ExtensionProxy> proxy =
|
| - automation()->InstallExtension(extension_file_path, with_ui);
|
| - std::string id;
|
| - if (!proxy.get() || !proxy.get()->GetId(&id))
|
| - return "";
|
| - return id;
|
| -}
|
| -
|
| bool PyUITestBase::GetBookmarkBarState(bool* visible, bool* detached) {
|
| scoped_refptr<BrowserProxy> browser_proxy =
|
| automation()->GetBrowserWindow(0); // Window doesn't matter.
|
|
|