Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(169)

Side by Side Diff: base/file_util_android.h

Issue 7184032: Upstream android file related code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address the comments Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698