summaryrefslogtreecommitdiff
path: root/systrace/catapult/systrace/atrace_helper/jni/time_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'systrace/catapult/systrace/atrace_helper/jni/time_utils.h')
-rw-r--r--systrace/catapult/systrace/atrace_helper/jni/time_utils.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/systrace/catapult/systrace/atrace_helper/jni/time_utils.h b/systrace/catapult/systrace/atrace_helper/jni/time_utils.h
deleted file mode 100644
index 2319601..0000000
--- a/systrace/catapult/systrace/atrace_helper/jni/time_utils.h
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright 2017 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef TIME_UTILS_H_
-#define TIME_UTILS_H_
-
-#include <stdint.h>
-
-namespace time_utils {
-
-uint64_t GetTimestamp();
-
-class PeriodicTimer {
- public:
- PeriodicTimer(int interval_ms);
- ~PeriodicTimer();
-
- void Start();
- void Stop();
- // Wait for next tick. Returns false if interrupted by Stop() or not started.
- bool Wait();
-
- private:
- PeriodicTimer(const PeriodicTimer&) = delete;
- void operator=(const PeriodicTimer&) = delete;
-
- const int interval_ms_;
- int timer_fd_;
-};
-
-} // namespace time_utils
-
-#endif // TIME_UTILS_