diff options
author | Calin Juravle <calin@google.com> | 2020-03-26 15:38:27 -0700 |
---|---|---|
committer | Calin Juravle <calin@google.com> | 2020-03-27 12:39:06 -0700 |
commit | 6a43826f35e1c58f55950312600a8f25cd7aabcf (patch) | |
tree | bc1395b787500b03a0300b5cd66af02e6dc4381c /mmodules | |
parent | 2ab7ac169c53576a2d4df41e0ed85f8d65b41511 (diff) |
Open access to reportClassLoaderChain as CorePlatformAPI
This is needed to support system server classpath reporting.
SystemServer class loader is constructed before we can install
a reporter. As such, we need a way to report the existing classpath
after the class loader is constructed.
Test: m
Bug: 148774920
Change-Id: Ice170bfd093ece643425695e2afbd6f2af675614
Diffstat (limited to 'mmodules')
-rw-r--r-- | mmodules/core_platform_api/api/platform/current-api.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mmodules/core_platform_api/api/platform/current-api.txt b/mmodules/core_platform_api/api/platform/current-api.txt index 74d536ff62..d9185c3887 100644 --- a/mmodules/core_platform_api/api/platform/current-api.txt +++ b/mmodules/core_platform_api/api/platform/current-api.txt @@ -531,6 +531,7 @@ package dalvik.system { method public void addDexPath(String); method public void addNativePath(java.util.Collection<java.lang.String>); method public String getLdLibraryPath(); + method public void reportClassLoaderChain(); method public static void setReporter(dalvik.system.BaseDexClassLoader.Reporter); } |