| Index: chrome/test/automation/automation_proxy_uitest.h
|
| diff --git a/chrome/test/automation/automation_proxy_uitest.h b/chrome/test/automation/automation_proxy_uitest.h
|
| index 1f2c9f35c6d0bcab6108e609f213e5464e820c8c..cda06c1895fc0de8b4a42b088ee6e8e95afd70d6 100644
|
| --- a/chrome/test/automation/automation_proxy_uitest.h
|
| +++ b/chrome/test/automation/automation_proxy_uitest.h
|
| @@ -110,16 +110,17 @@ class ExternalTabUITestMockClient : public AutomationProxy {
|
| class ExternalTabUITest : public UITest {
|
| public:
|
| ExternalTabUITest() : UITest(MessageLoop::TYPE_UI) {}
|
| - // Override UITest's CreateAutomationProxy to provide the unit test
|
| + // Override UITest's CreateProxyLauncher to provide the unit test
|
| // with our special implementation of AutomationProxy.
|
| - // This function is called from within UITest::LaunchBrowserAndServer.
|
| - virtual AutomationProxy* CreateAutomationProxy(int execution_timeout);
|
| + // This function is called from within UITest::SetUp().
|
| + virtual ProxyLauncher* CreateProxyLauncher();
|
| protected:
|
| // Filtered Inet will override automation callbacks for network resources.
|
| virtual bool ShouldFilterInet() {
|
| return false;
|
| }
|
| ExternalTabUITestMockClient* mock_;
|
| + std::string channel_id_; // Channel id of automation proxy.
|
| };
|
|
|
| #endif // CHROME_TEST_AUTOMATION_AUTOMATION_PROXY_UITEST_H_
|
|
|