Index: base/files/file_util_posix.cc |
diff --git a/base/files/file_util_posix.cc b/base/files/file_util_posix.cc |
index a8c5d44f9c753fdf0a29d8f5b7765d9b6d4e8f64..7fcb4a977c94bb7776809a44a6c1e6dd12e230eb 100644 |
--- a/base/files/file_util_posix.cc |
+++ b/base/files/file_util_posix.cc |
@@ -454,6 +454,8 @@ bool GetTempDir(FilePath* path) { |
} else { |
#if defined(OS_ANDROID) |
return PathService::Get(base::DIR_CACHE, path); |
+#elif defined(__BRILLO__) |
+ *path = FilePath("/data/local/tmp"); |
Daniel Erat
2015/08/06 23:25:09
i think that this one shouldn't be upstreamed; __B
arihc
2015/08/06 23:51:22
Done.
|
#else |
*path = FilePath("/tmp"); |
#endif |