OSDN Git Service

libperfmgr: change to use Value directly in config
[android-x86/system-extras.git] / perfprofd / perf_data_converter.h
1 #ifndef WIRELESS_ANDROID_LOGGING_AWP_PERF_DATA_CONVERTER_H_
2 #define WIRELESS_ANDROID_LOGGING_AWP_PERF_DATA_CONVERTER_H_
3
4 #include <string>
5
6 #include "perfprofd_record-fwd.h"
7
8 namespace perfprofd {
9 struct Symbolizer;
10 }  // namespace perfprofd
11
12 namespace android {
13 namespace perfprofd {
14
15 PerfprofdRecord*
16 RawPerfDataToAndroidPerfProfile(const std::string &perf_file,
17                                 ::perfprofd::Symbolizer* symbolizer);
18
19 }  // namespace perfprofd
20 }  // namespace android
21
22 #endif  // WIRELESS_ANDROID_LOGGING_AWP_PERF_DATA_CONVERTER_H_