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

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

Issue 10115018: Convert the infobars interactive_ui_test to a browser_test. Remove the ExtensionProxy class which… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 8 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/automation/extension_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/automation/automation_proxy.cc
===================================================================
--- chrome/test/automation/automation_proxy.cc (revision 132618)
+++ chrome/test/automation/automation_proxy.cc (working copy)
@@ -18,7 +18,6 @@
#include "chrome/common/chrome_version_info.h"
#include "chrome/test/automation/automation_json_requests.h"
#include "chrome/test/automation/browser_proxy.h"
-#include "chrome/test/automation/extension_proxy.h"
#include "chrome/test/automation/tab_proxy.h"
#include "chrome/test/automation/window_proxy.h"
#include "ipc/ipc_descriptors.h"
@@ -236,21 +235,6 @@
new_tab_ui_load_complete_.Signal();
}
-scoped_refptr<ExtensionProxy> AutomationProxy::InstallExtension(
- const FilePath& extension_path, bool with_ui) {
- int handle = 0;
- if (!Send(new AutomationMsg_InstallExtension(extension_path,
- with_ui, &handle)))
- return NULL;
-
- return ProxyObjectFromHandle<ExtensionProxy>(handle);
-}
-
-bool AutomationProxy::GetExtensionTestResult(
- bool* result, std::string* message) {
- return Send(new AutomationMsg_WaitForExtensionTestResult(result, message));
-}
-
bool AutomationProxy::GetBrowserWindowCount(int* num_windows) {
if (!num_windows) {
NOTREACHED();
« no previous file with comments | « chrome/test/automation/automation_proxy.h ('k') | chrome/test/automation/extension_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698