Index: third_party/WebKit/Tools/Scripts/webkitpy/common/system/filesystem.py |
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/filesystem.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/filesystem.py |
index 63a84c786a7bd8ec7d1dd7c64bc9a2a0af6d3ffa..d776810e59bb07f5e1b3f91308706e70907b6200 100644 |
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/filesystem.py |
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/filesystem.py |
@@ -79,6 +79,9 @@ class FileSystem(object): |
def exists(self, path): |
return os.path.exists(path) |
+ def getsize(self, path): |
+ return os.path.getsize(path) |
+ |
def files_under(self, path, dirs_to_skip=[], file_filter=None): |
"""Return the list of all files under the given path in topdown order. |