Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef BASE_FILE_UTIL_ANDROID_H_ | |
| 6 #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.*
| |
| 7 #pragma once | |
| 8 | |
| 9 // Not implemented in Bionic. See platform_file_android.cc. | |
| 10 extern "C" int futimes(int fd, const struct timeval tv[2]); | |
| 11 | |
| 12 // The prototype of mkdtemp is missing. | |
| 13 extern "C" char* mkdtemp(char* path); | |
| 14 | |
| 15 #endif // BASE_FILE_UTIL_ANDROID_H_ | |
| OLD | NEW |