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

Unified Diff: runtime/vm/object.h

Issue 227433004: Add runtime and native entry tags (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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 | « runtime/vm/native_entry.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index 5ba48aa5d6e4d773bd883723589c4b1295b94ec4..f42ab40472e93677eeae191f1e04948c485eda76 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -2608,6 +2608,13 @@ class Library : public Object {
void set_native_entry_resolver(Dart_NativeEntryResolver value) const {
raw_ptr()->native_entry_resolver_ = value;
}
+ Dart_NativeEntrySymbol native_entry_symbol_resolver() const {
+ return raw_ptr()->native_entry_symbol_resolver_;
+ }
+ void set_native_entry_symbol_resolver(
+ Dart_NativeEntrySymbol native_symbol_resolver) const {
+ raw_ptr()->native_entry_symbol_resolver_ = native_symbol_resolver;
+ }
RawError* Patch(const Script& script) const;
« no previous file with comments | « runtime/vm/native_entry.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698