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

Unified Diff: mojo/public/c/system/thunks.cc

Issue 2084993002: Mojo: add support for disallowing sync calls for a process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 6 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
« no previous file with comments | « mojo/public/c/system/thunks.h ('k') | mojo/public/c/system/types.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/c/system/thunks.cc
diff --git a/mojo/public/c/system/thunks.cc b/mojo/public/c/system/thunks.cc
index 1960dd6065f4fdd7d67e6557112ea9130aede75c..d6bfd95d1741c3b65581ca4a5818effc905673a3 100644
--- a/mojo/public/c/system/thunks.cc
+++ b/mojo/public/c/system/thunks.cc
@@ -282,6 +282,11 @@ MojoResult MojoNotifyBadMessage(MojoMessageHandle message,
return g_thunks.NotifyBadMessage(message, error, error_num_bytes);
}
+MojoResult MojoGetProperty(MojoPropertyType type, void* value) {
+ assert(g_thunks.GetProperty);
+ return g_thunks.GetProperty(type, value);
+}
+
} // extern "C"
size_t MojoEmbedderSetSystemThunks(const MojoSystemThunks* system_thunks) {
« no previous file with comments | « mojo/public/c/system/thunks.h ('k') | mojo/public/c/system/types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698