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

Unified Diff: src/untrusted/pll_loader/pll_loader.h

Issue 1825893002: PNaCl Dynamic Linking: Added portable dependencies to shared objects. (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Use file basename as dependency, not absolute / relative path. Created 4 years, 9 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: src/untrusted/pll_loader/pll_loader.h
diff --git a/src/untrusted/pll_loader/pll_loader.h b/src/untrusted/pll_loader/pll_loader.h
index 0cdecc352c313e24ef0485a12773d155cc6a6ce3..89d7bc18f9deacdeaa77e2df37d7a81c0946dcc7 100644
--- a/src/untrusted/pll_loader/pll_loader.h
+++ b/src/untrusted/pll_loader/pll_loader.h
@@ -29,6 +29,14 @@ class PLLModule {
return root_->string_table + root_->imported_names[i];
}
+ const char *GetDependenciesList() const {
Mark Seaborn 2016/03/30 23:24:57 Since these new getters don't add much, you might
Sean Klein 2016/04/01 23:12:24 I'll update "PLLModule::root()" to be a const func
+ return root_->dependencies_list;
+ }
+
+ size_t GetDependenciesCount() const {
+ return root_->dependencies_count;
+ }
+
// If this function returns "false", the symbol is definitely not exported.
// Otherwise, the symbol may or may not be exported. This is public so the
// bloom filter can be tested.

Powered by Google App Engine
This is Rietveld 408576698