Chromium Code Reviews| Index: runtime/bin/file_android.cc |
| diff --git a/runtime/bin/file_android.cc b/runtime/bin/file_android.cc |
| index 3eb50958cd11bab8af787e436cdec1fc3f1f971b..68afdb9772faa34ad5df3e2d9bb2271229acce50 100644 |
| --- a/runtime/bin/file_android.cc |
| +++ b/runtime/bin/file_android.cc |
| @@ -132,6 +132,9 @@ bool File::SetPosition(int64_t position) { |
| } |
| +void File::SetTranslation(DartFileTranslation translation) {} |
|
siva
2017/02/22 00:58:45
Maybe add a comment here stating there is nothing
zra
2017/02/22 05:07:15
Done.
|
| + |
| + |
| bool File::Truncate(int64_t length) { |
| ASSERT(handle_->fd() >= 0); |
| return TEMP_FAILURE_RETRY(ftruncate(handle_->fd(), length) != -1); |