summaryrefslogtreecommitdiffstats
path: root/include/android_runtime
diff options
context:
space:
mode:
authorMike Lockwood <lockwood@android.com>2010-06-30 17:49:41 -0400
committerMike Lockwood <lockwood@android.com>2010-06-30 17:54:10 -0400
commit81ea83d10883886013bc95eac2fe032acf1e7aa9 (patch)
tree0c7e032f99dab7739bd7ca2b2efc5b852e50de44 /include/android_runtime
parent767c5e4be0a4bddc815efe5a4cb2cd0fdd584429 (diff)
downloadframeworks_base-81ea83d10883886013bc95eac2fe032acf1e7aa9.zip
frameworks_base-81ea83d10883886013bc95eac2fe032acf1e7aa9.tar.gz
frameworks_base-81ea83d10883886013bc95eac2fe032acf1e7aa9.tar.bz2
Move MTP JNI code from libandroid_runtime to libmedia_jni
Signed-off-by: Mike Lockwood <lockwood@android.com> Change-Id: I0c54bbe4e6146beba7d22e782e02ded420f50dbd
Diffstat (limited to 'include/android_runtime')
-rw-r--r--include/android_runtime/AndroidRuntime.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/android_runtime/AndroidRuntime.h b/include/android_runtime/AndroidRuntime.h
index 97a96b2..2ded5be 100644
--- a/include/android_runtime/AndroidRuntime.h
+++ b/include/android_runtime/AndroidRuntime.h
@@ -30,7 +30,9 @@
namespace android {
-
+
+class CursorWindow;
+
class AndroidRuntime
{
public:
@@ -121,6 +123,8 @@ private:
// Returns the Unix file descriptor for a ParcelFileDescriptor object
extern int getParcelFileDescriptorFD(JNIEnv* env, jobject object);
+extern CursorWindow * get_window_from_object(JNIEnv * env, jobject javaWindow);
+
}
#endif