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

Unified Diff: base/platform_file_android.h

Issue 7184032: Upstream android file related code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update DEPS 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 side-by-side diff with in-line comments
Download patch
Index: base/platform_file_android.h
diff --git a/base/platform_file_android.h b/base/platform_file_android.h
new file mode 100644
index 0000000000000000000000000000000000000000..6b018d86cdec41fe4d7e7e325b6e9a79dc09190a
--- /dev/null
+++ b/base/platform_file_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_PLATFORM_FILE_ANDROID_H_
+#define BASE_PLATFORM_FILE_ANDROID_H_
joth 2011/06/19 12:48:05 (Looking for a base OWNER opinion on this; I'm gue
brettw 2011/06/20 03:50:40 How about file_util_android.h/cc? I'd rather not h
+#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_PLATFORM_FILE_ANDROID_H_

Powered by Google App Engine
This is Rietveld 408576698