diff options
author | 2021-09-10 23:05:47 -0700 | |
---|---|---|
committer | 2021-09-24 04:10:43 +0000 | |
commit | 2a9d9f2de4f7ec791933093069890067a457afb0 (patch) | |
tree | 8d37c7c468ffc4c15319606c38fe55c564c5386a /system/common/metrics.cc | |
parent | d6cbecced12b73bc4d2811a17dbebed8281d1f14 (diff) |
legacy: Explicitly include types/raw_address
Bug: 197478351
Tag: #refactor
Test: gd/cert/run
Change-Id: I6eedcf3455ab278094a2e4e47f8cede84d96fd25
Diffstat (limited to 'system/common/metrics.cc')
-rw-r--r-- | system/common/metrics.cc | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/system/common/metrics.cc b/system/common/metrics.cc index 9214dcbded..0aa440a1dd 100644 --- a/system/common/metrics.cc +++ b/system/common/metrics.cc @@ -16,7 +16,14 @@ * ******************************************************************************/ +#include "metrics.h" + +#include <base/base64.h> +#include <base/logging.h> +#include <include/hardware/bt_av.h> +#include <statslog.h> #include <unistd.h> + #include <algorithm> #include <array> #include <cerrno> @@ -26,20 +33,14 @@ #include <memory> #include <mutex> -#include <base/base64.h> -#include <base/logging.h> -#include <include/hardware/bt_av.h> -#include <statslog.h> - -#include "bluetooth/metrics/bluetooth.pb.h" -#include "osi/include/osi.h" -#include "stack/include/btm_api_types.h" - #include "address_obfuscator.h" +#include "bluetooth/metrics/bluetooth.pb.h" #include "leaky_bonded_queue.h" #include "metric_id_allocator.h" -#include "metrics.h" +#include "osi/include/osi.h" +#include "stack/include/btm_api_types.h" #include "time_util.h" +#include "types/raw_address.h" namespace bluetooth { |