| Index: runtime/bin/directory.h
|
| diff --git a/runtime/bin/directory.h b/runtime/bin/directory.h
|
| index f45571072e45baad1f475b78fb96e44332dd4407..ee1f389cfe47f0f32b149d26372eb2caf39bde38 100644
|
| --- a/runtime/bin/directory.h
|
| +++ b/runtime/bin/directory.h
|
| @@ -274,6 +274,8 @@ class Directory {
|
| static const char* Current();
|
| static const char* SystemTemp();
|
| static const char* CreateTemp(const char* path);
|
| + // Set the system temporary directory.
|
| + static void SetSystemTemp(const char* path);
|
| static bool SetCurrent(const char* path);
|
| static bool Create(const char* path);
|
| static bool Delete(const char* path, bool recursive);
|
| @@ -290,6 +292,7 @@ class Directory {
|
| static CObject* RenameRequest(const CObjectArray& request);
|
|
|
| private:
|
| + static char* system_temp_path_override_;
|
| DISALLOW_ALLOCATION();
|
| DISALLOW_IMPLICIT_CONSTRUCTORS(Directory);
|
| };
|
|
|