Skip to content
Snippets Groups Projects
Commit 5c74c834 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Removing status reporting from under lock."

parents 41a6584d 7f3ff5b0
No related branches found
No related tags found
No related merge requests found
......@@ -35,24 +35,24 @@ static jboolean nativeCreateDataLoader(JNIEnv* env,
static jboolean nativeStartDataLoader(JNIEnv* env,
jobject thiz,
jint storageId) {
return DataLoaderService_OnStart(storageId);
return DataLoaderService_OnStart(env, storageId);
}
static jboolean nativeStopDataLoader(JNIEnv* env,
jobject thiz,
jint storageId) {
return DataLoaderService_OnStop(storageId);
return DataLoaderService_OnStop(env, storageId);
}
static jboolean nativeDestroyDataLoader(JNIEnv* env,
jobject thiz,
jint storageId) {
return DataLoaderService_OnDestroy(storageId);
return DataLoaderService_OnDestroy(env, storageId);
}
static jboolean nativePrepareImage(JNIEnv* env, jobject thiz, jint storageId, jobject addedFiles, jobject removedFiles) {
return DataLoaderService_OnPrepareImage(storageId, addedFiles, removedFiles);
return DataLoaderService_OnPrepareImage(env, storageId, addedFiles, removedFiles);
}
static void nativeWriteData(JNIEnv* env,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment