summaryrefslogtreecommitdiff
path: root/base/files/file_util_android.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/files/file_util_android.cc')
-rw-r--r--base/files/file_util_android.cc16
1 files changed, 16 insertions, 0 deletions
diff --git a/base/files/file_util_android.cc b/base/files/file_util_android.cc
new file mode 100644
index 0000000000..b8b3b3720f
--- /dev/null
+++ b/base/files/file_util_android.cc
@@ -0,0 +1,16 @@
+// Copyright (c) 2012 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.
+
+#include "base/files/file_util.h"
+
+#include "base/files/file_path.h"
+#include "base/path_service.h"
+
+namespace base {
+
+bool GetShmemTempDir(bool executable, base::FilePath* path) {
+ return PathService::Get(base::DIR_CACHE, path);
+}
+
+} // namespace base