Index: runtime/bin/file_win.cc |
diff --git a/runtime/bin/file_win.cc b/runtime/bin/file_win.cc |
index f487a889b885676dfbb79d73d280ce289b0ed7fa..a9cfda9d5a61d01852b634758d2cee6a86a7a0bc 100644 |
--- a/runtime/bin/file_win.cc |
+++ b/runtime/bin/file_win.cc |
@@ -74,7 +74,13 @@ bool File::IsClosed() { |
} |
-void* File::MapExecutable(intptr_t* len) { |
+void* File::Map(MapType type, int64_t position, int64_t length) { |
+ UNIMPLEMENTED(); |
+ return NULL; |
+} |
+ |
+ |
+void* File::MapReadExecute(int64_t position, int64_t length) { |
UNIMPLEMENTED(); |
return NULL; |
} |