Chromium Code Reviews| Index: base/file_util_android.h |
| diff --git a/base/file_util_android.h b/base/file_util_android.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..6f17fac97d14c037ff512ac756c08cb5e420d6c4 |
| --- /dev/null |
| +++ b/base/file_util_android.h |
| @@ -0,0 +1,15 @@ |
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef BASE_FILE_UTIL_ANDROID_H_ |
| +#define BASE_FILE_UTIL_ANDROID_H_ |
|
darin (slow to review)
2011/06/20 18:44:01
it really seems wrong to call this file_util* sinc
michaelbai
2011/06/20 22:50:36
Rename to os_compat_android.*
|
| +#pragma once |
| + |
| +// Not implemented in Bionic. See platform_file_android.cc. |
| +extern "C" int futimes(int fd, const struct timeval tv[2]); |
| + |
| +// The prototype of mkdtemp is missing. |
| +extern "C" char* mkdtemp(char* path); |
| + |
| +#endif // BASE_FILE_UTIL_ANDROID_H_ |