From 881296fa453473f798c63d491e8a1b4ef6910bb3 Mon Sep 17 00:00:00 2001 From: Steven Moreland Date: Wed, 19 Jul 2017 09:50:45 -0700 Subject: [PATCH] frameworks/base: 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: modules using frameworks/base find headers Bug: 63762847 Change-Id: I0f9f231acdebe460f279135462f43d3e32eff64d --- core/jni/android_net_TrafficStats.cpp | 2 +- core/jni/com_android_internal_net_NetworkStatsFactory.cpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/jni/android_net_TrafficStats.cpp b/core/jni/android_net_TrafficStats.cpp index 7b7d0cf498..d0c237da07 100644 --- a/core/jni/android_net_TrafficStats.cpp +++ b/core/jni/android_net_TrafficStats.cpp @@ -25,7 +25,7 @@ #include "core_jni_helpers.h" #include -#include +#include #include #include diff --git a/core/jni/com_android_internal_net_NetworkStatsFactory.cpp b/core/jni/com_android_internal_net_NetworkStatsFactory.cpp index 4a2b88142e..0cb6935990 100644 --- a/core/jni/com_android_internal_net_NetworkStatsFactory.cpp +++ b/core/jni/com_android_internal_net_NetworkStatsFactory.cpp @@ -24,9 +24,9 @@ #include #include -#include -#include -#include +#include +#include +#include #include #include