| Index: third_party/WebKit/Tools/Scripts/webkitpy/common/system/systemhost.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/systemhost.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/systemhost.py
|
| index 01f986278676bec7385065fc31a453fd3acee160..0f92c76efc56e383e70a363fb2b6f9223eeb5f3c 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/systemhost.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/systemhost.py
|
| @@ -29,6 +29,7 @@
|
| import os
|
| import platform
|
| import sys
|
| +import time
|
|
|
| from webkitpy.common.system import executive, filesystem, platforminfo, user, workspace
|
|
|
| @@ -55,3 +56,6 @@ class SystemHost(object):
|
|
|
| def exit(self, returncode):
|
| sys.exit(returncode)
|
| +
|
| + def time(self):
|
| + return time.time()
|
|
|