diff options
author | Calin Juravle <calin@google.com> | 2014-10-28 17:16:23 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-10-28 17:16:24 +0000 |
commit | 9c094da83112bbcad37eaffecfee96ff169d84a8 (patch) | |
tree | 5a366a9a42c7d245e37db6e0eefa7cae43397004 /include | |
parent | 3dbcc8b9332cdbaa0dae47a6cae3a043f96262fe (diff) | |
parent | 1402fbb13523fed9d96217e801df5678e3c01a6b (diff) | |
download | system_core-9c094da83112bbcad37eaffecfee96ff169d84a8.zip system_core-9c094da83112bbcad37eaffecfee96ff169d84a8.tar.gz system_core-9c094da83112bbcad37eaffecfee96ff169d84a8.tar.bz2 |
Merge "Handle code_cache dir creation in libnativebridge" into lmp-mr1-dev
Diffstat (limited to 'include')
-rw-r--r-- | include/nativebridge/native_bridge.h | 2 |
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. |