| Index: src/base/platform/platform-win32.cc | 
| diff --git a/src/base/platform/platform-win32.cc b/src/base/platform/platform-win32.cc | 
| index 6afa6f9c3731a835cbd893066bbcbb8bf984c27e..0076a35ce502e53a1b1c0b10251ad0cd59130046 100644 | 
| --- a/src/base/platform/platform-win32.cc | 
| +++ b/src/base/platform/platform-win32.cc | 
| @@ -574,6 +574,7 @@ bool OS::Remove(const char* path) { | 
| return (DeleteFileA(path) != 0); | 
| } | 
|  | 
| +char OS::DirectorySeparator() { return '\\'; } | 
|  | 
| bool OS::isDirectorySeparator(const char ch) { | 
| return ch == '/' || ch == '\\'; | 
|  |