| Index: base/file_util_win.cc
|
| diff --git a/base/file_util_win.cc b/base/file_util_win.cc
|
| index 8d9fbdef5013f7ace4d0110f4a00dc24228cbc48..a6720a576224f6d1d5573cefab5d97665a4dcefb 100644
|
| --- a/base/file_util_win.cc
|
| +++ b/base/file_util_win.cc
|
| @@ -556,7 +556,7 @@ bool GetTempDir(FilePath* path) {
|
| return true;
|
| }
|
|
|
| -bool GetShmemTempDir(FilePath* path) {
|
| +bool GetShmemTempDir(FilePath* path, bool executable) {
|
| return GetTempDir(path);
|
| }
|
|
|
| @@ -576,7 +576,7 @@ bool CreateTemporaryFile(FilePath* path) {
|
| return false;
|
| }
|
|
|
| -FILE* CreateAndOpenTemporaryShmemFile(FilePath* path) {
|
| +FILE* CreateAndOpenTemporaryShmemFile(FilePath* path, bool executable) {
|
| base::ThreadRestrictions::AssertIOAllowed();
|
| return CreateAndOpenTemporaryFile(path);
|
| }
|
|
|