1 #ifndef COMMON_UTIL_H_
2 #define COMMON_UTIL_H_
3 
4 #include <chrono>
5 
6 namespace android {
7 
8 typedef std::chrono::time_point<std::chrono::steady_clock> SteadyClock;
9 
10 }  // namespace android
11 
12 #endif  // COMMON_UTIL_H_
13