Chromium Code Reviews| Index: third_party/WebKit/Tools/Scripts/webkitpy/common/host_mock.py |
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/host_mock.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/host_mock.py |
| index 59aca25dbe7719ef84dea24218ab9fdb570d3577..679ffbd36366f2629ae9a81cfd309ecb7f3a3481 100644 |
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/common/host_mock.py |
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/host_mock.py |
| @@ -41,8 +41,12 @@ from webkitpy.layout_tests.port.test import add_unit_tests_to_mock_filesystem |
| class MockHost(MockSystemHost): |
| def __init__(self, log_executive=False, executive_throws_when_run=None, |
| - initialize_scm_by_default=True, web=None, scm=None, os_name=None, os_version=None): |
| - MockSystemHost.__init__(self, log_executive, executive_throws_when_run, os_name=os_name, os_version=os_version) |
| + initialize_scm_by_default=True, web=None, scm=None, os_name=None, os_version=None, |
| + time_return_val=123): |
| + |
| + MockSystemHost.__init__(self, time_return_val, log_executive, executive_throws_when_run, |
|
Dirk Pranke
2016/10/28 14:37:21
Keep the parameters in the same order, i.e. move t
|
| + os_name=os_name, os_version=os_version) |
| + |
| add_unit_tests_to_mock_filesystem(self.filesystem) |
| self.web = web or MockWeb() |