summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Moreland <smoreland@google.com>2017-07-18 16:53:53 -0700
committerSteven Moreland <smoreland@google.com>2017-07-18 16:53:53 -0700
commit8ba8c509c8408b55083739e6b3cf3db32ca7606d (patch)
treefe547f6fddbfd485f1c54ed8ff27cc637eff4dcf
parente71d9d40b5b66d646f80081abea9893d3e0fdf59 (diff)
downloadTerminal-8ba8c509c8408b55083739e6b3cf3db32ca7606d.tar.gz
packages/apps/Terminal: use proper nativehelper headersandroid-o-iot-preview-5o-iot-preview-5
libnativeheader exports headers under nativeheader. These were available before incorrectly as global headers in order to give access to jni.h. Test: modules using packages/apps/Terminal find headers Bug: 63762847 Change-Id: I79ac33728bee7daada17c05146776aa3a006ae2c
-rw-r--r--jni/com_android_terminal_Terminal.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/jni/com_android_terminal_Terminal.cpp b/jni/com_android_terminal_Terminal.cpp
index 6d1bdf8..83aaec9 100644
--- a/jni/com_android_terminal_Terminal.cpp
+++ b/jni/com_android_terminal_Terminal.cpp
@@ -21,9 +21,9 @@
#include "android_runtime/AndroidRuntime.h"
#include "jni.h"
-#include "JNIHelp.h"
-#include "ScopedLocalRef.h"
-#include "ScopedPrimitiveArray.h"
+#include <nativehelper/JNIHelp.h>
+#include <nativehelper/ScopedLocalRef.h>
+#include <nativehelper/ScopedPrimitiveArray.h>
#include <fcntl.h>
#include <pty.h>