diff options
author | 2020-01-30 14:39:17 -0800 | |
---|---|---|
committer | 2020-01-30 14:40:18 -0800 | |
commit | 6c7d214699446da83d41ce498372c619222e5024 (patch) | |
tree | 97df45f07c58d5780ef7d7f8c2a3fc68ac269e25 | |
parent | 56a1e4fca9f456ac7864fe8ad63a5eddae1f410e (diff) |
libbinder: hide BufferedTextOutput.h
Nothing uses this now, and the general feeling is that we should
deprecate TextOutput at some point in favor of liblog (potentially to
save a small amount of memory from static TextOutput objects). So,
hiding this header.
Bug: N/A
Test: builds
Change-Id: I4f1d8a1aa8a5db4e602da6499050881ab4aaeca2
-rw-r--r-- | libs/binder/BufferedTextOutput.cpp | 2 | ||||
-rw-r--r-- | libs/binder/BufferedTextOutput.h (renamed from libs/binder/include/binder/BufferedTextOutput.h) | 0 | ||||
-rw-r--r-- | libs/binder/Static.cpp | 2 |
3 files changed, 2 insertions, 2 deletions
diff --git a/libs/binder/BufferedTextOutput.cpp b/libs/binder/BufferedTextOutput.cpp index fb424fdcfb..856a178f58 100644 --- a/libs/binder/BufferedTextOutput.cpp +++ b/libs/binder/BufferedTextOutput.cpp @@ -14,7 +14,7 @@ * limitations under the License. */ -#include <binder/BufferedTextOutput.h> +#include "BufferedTextOutput.h" #include <binder/Debug.h> #include <cutils/atomic.h> diff --git a/libs/binder/include/binder/BufferedTextOutput.h b/libs/binder/BufferedTextOutput.h index 1b27bb2249..1b27bb2249 100644 --- a/libs/binder/include/binder/BufferedTextOutput.h +++ b/libs/binder/BufferedTextOutput.h diff --git a/libs/binder/Static.cpp b/libs/binder/Static.cpp index bd40536884..7a77f6de54 100644 --- a/libs/binder/Static.cpp +++ b/libs/binder/Static.cpp @@ -19,7 +19,7 @@ #include "Static.h" -#include <binder/BufferedTextOutput.h> +#include "BufferedTextOutput.h" #include <binder/IPCThreadState.h> #include <utils/Log.h> |