summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorCalin Juravle <calin@google.com>2014-10-28 18:08:02 +0000
committerandroid-build-merger <android-build-merger@google.com>2014-10-28 18:08:02 +0000
commit0f31008eaf96245bba440b6dba582fffdfde7730 (patch)
treec7464d46a507e24ac40acb884db0eefd63726fae /include
parent6331781a7507c4c3f86c37781cc715baaaa9814c (diff)
parent9c094da83112bbcad37eaffecfee96ff169d84a8 (diff)
downloadsystem_core-0f31008eaf96245bba440b6dba582fffdfde7730.zip
system_core-0f31008eaf96245bba440b6dba582fffdfde7730.tar.gz
system_core-0f31008eaf96245bba440b6dba582fffdfde7730.tar.bz2
Merge "Handle code_cache dir creation in libnativebridge" into lmp-mr1-dev
automerge: 9c094da * commit '9c094da83112bbcad37eaffecfee96ff169d84a8': Handle code_cache dir creation in libnativebridge
Diffstat (limited to 'include')
-rw-r--r--include/nativebridge/native_bridge.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/nativebridge/native_bridge.h b/include/nativebridge/native_bridge.h
index ac254e9..523dc49 100644
--- a/include/nativebridge/native_bridge.h
+++ b/include/nativebridge/native_bridge.h
@@ -37,7 +37,7 @@ bool NeedsNativeBridge(const char* instruction_set);
// Do the early initialization part of the native bridge, if necessary. This should be done under
// high privileges.
-void PreInitializeNativeBridge(const char* app_data_dir, const char* instruction_set);
+bool PreInitializeNativeBridge(const char* app_data_dir, const char* instruction_set);
// Initialize the native bridge, if any. Should be called by Runtime::DidForkFromZygote. The JNIEnv*
// will be used to modify the app environment for the bridge.