| Index: chrome_frame/test/automation_client_mock.cc
|
| diff --git a/chrome_frame/test/automation_client_mock.cc b/chrome_frame/test/automation_client_mock.cc
|
| index 0927ae2b6cf05ff009f66c4eba3b9223fb5e4fe7..94a836ba1529d04ccd5496276de3cef63fa9f3d3 100644
|
| --- a/chrome_frame/test/automation_client_mock.cc
|
| +++ b/chrome_frame/test/automation_client_mock.cc
|
| @@ -44,9 +44,9 @@ void MockProxyFactory::GetServerImpl(ChromeFrameAutomationProxy* pxy,
|
| void** automation_server_id) {
|
| *automation_server_id = proxy_id;
|
| loop_->PostDelayedTask(FROM_HERE,
|
| - base::Bind(&LaunchDelegate::LaunchComplete,
|
| - base::Unretained(d), pxy, result),
|
| - params->launch_timeout() / 2);
|
| + base::Bind(&LaunchDelegate::LaunchComplete,
|
| + base::Unretained(d), pxy, result),
|
| + base::TimeDelta::FromMilliseconds(params->launch_timeout()) / 2);
|
| }
|
|
|
| void CFACMockTest::SetAutomationServerOk(int times) {
|
|
|