diff options
| author | 2017-10-11 22:56:45 +0000 | |
|---|---|---|
| committer | 2017-10-11 22:56:45 +0000 | |
| commit | cd4e159bbf95069a32e51f769a63276bdf324c4d (patch) | |
| tree | f5209bcdb2c1bb340abfbacf84db94e3b8f39b4c | |
| parent | ff40949f5baee5d5b5e87622256e2bcfa97b29d8 (diff) | |
| parent | caebafaf94b887c98e75c8bb2fdc5cd5a1c2abcf (diff) | |
Merge "Add missing includes." am: 4be4bb3db7 am: 41c08f49b4 am: e9aaf3c546
am: caebafaf94
Change-Id: I5ec663813ede4bb794691ecb5e9afc0140accb84
| -rw-r--r-- | libs/hwui/service/GraphicsStatsService.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libs/hwui/service/GraphicsStatsService.cpp b/libs/hwui/service/GraphicsStatsService.cpp index afb1193657e1..f7a90b0a65ec 100644 --- a/libs/hwui/service/GraphicsStatsService.cpp +++ b/libs/hwui/service/GraphicsStatsService.cpp @@ -22,10 +22,11 @@ #include <google/protobuf/io/zero_copy_stream_impl_lite.h> #include <log/log.h> +#include <errno.h> +#include <fcntl.h> #include <inttypes.h> -#include <sys/types.h> #include <sys/stat.h> -#include <fcntl.h> +#include <sys/types.h> #include <unistd.h> #include <sys/mman.h> @@ -366,4 +367,4 @@ void GraphicsStatsService::finishDump(Dump* dump) { } } /* namespace uirenderer */ -} /* namespace android */
\ No newline at end of file +} /* namespace android */ |