Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1174)

Unified Diff: runtime/bin/file_fuchsia.cc

Issue 2405393002: Use a single file for app snapshots. (Closed)
Patch Set: okay Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/bin/file_fuchsia.cc
diff --git a/runtime/bin/file_fuchsia.cc b/runtime/bin/file_fuchsia.cc
index fdc26238821b7d017e80de5cb75e070df6947362..6f4e27f5d0fe81b8a78b34296d8cebc94bccffec 100644
--- a/runtime/bin/file_fuchsia.cc
+++ b/runtime/bin/file_fuchsia.cc
@@ -75,7 +75,13 @@ bool File::IsClosed() {
}
-void* File::MapExecutable(intptr_t* len) {
+void* File::MapReadOnly(int64_t position, int64_t length) {
+ UNIMPLEMENTED();
+ return NULL;
+}
+
+
+void* File::MapReadExecute(int64_t position, int64_t length) {
UNIMPLEMENTED();
return NULL;
}

Powered by Google App Engine
This is Rietveld 408576698