Commit 0a3f82c3 authored by tfarina@chromium.org's avatar tfarina@chromium.org

Remove command_execution_timeout_ms and fix all the callers.

(This was a TODO for phajdan.jr).

BUG=None
TEST=trybots

Review URL: http://codereview.chromium.org/6277013

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71945 0039d316-1c4b-4281-b951-d872f2087c98
parent 8591a421
......@@ -192,6 +192,10 @@ class PyUITestBase : public UITestBase {
return TestTimeouts::action_max_timeout_ms();
}
int command_execution_timeout_ms() const {
return TestTimeouts::command_execution_timeout_ms();
}
private:
// Enables PostTask to main thread.
// Should be shared across multiple instances of PyUITestBase so that this
......
......@@ -244,12 +244,6 @@ class UITestBase {
return launcher_->browser_quit_time();
}
// Compatibility timeout accessors.
// TODO(phajdan.jr): update callers and remove these.
static int command_execution_timeout_ms() {
return TestTimeouts::command_execution_timeout_ms();
}
// Fetch the state which determines whether the profile will be cleared on
// next startup.
bool get_clear_profile() const {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment