SurfaceTexture.cpp: use proper nativehelper headers

libnativehelper exports headers under nativehelper. These were
available before incorrectly as global headers in order to give
access to jni.h.

Test: SurfaceTexture.cpp finds headers
Bug: 63762847
Change-Id: I3ec1b888c226c2894649d9f9a8f8203891c1ab02
(cherry picked from commit 849252c469)
This commit is contained in:
Steven Moreland
2017-07-28 10:21:47 -07:00
parent b65356709e
commit f53501098c

View File

@@ -34,8 +34,8 @@
#include <utils/misc.h>
#include "jni.h"
#include "JNIHelp.h"
#include "ScopedLocalRef.h"
#include <nativehelper/JNIHelp.h>
#include <nativehelper/ScopedLocalRef.h>
// ----------------------------------------------------------------------------