summaryrefslogtreecommitdiff
path: root/simpleperf/workload.h
diff options
context:
space:
mode:
authorYabin Cui <yabinc@google.com>2021-01-11 17:35:57 -0800
committerYabin Cui <yabinc@google.com>2021-01-11 17:50:30 -0800
commitfaa7b928abeb04bd46c7f66213a79caf450016de (patch)
treec3c5004e7b95017eee1daf6c9e7c4583736c1610 /simpleperf/workload.h
parentc1cc718bcc6965536d5c6be8bc9e65f6690ecacc (diff)
downloadextras-faa7b928abeb04bd46c7f66213a79caf450016de.tar.gz
simpleperf: move all source files into simpleperf namespace
Bug: none Test: run simpleperf_unit_test Change-Id: I348028ee5bea90ce908bc240fc5efc22c4cd540f
Diffstat (limited to 'simpleperf/workload.h')
-rw-r--r--simpleperf/workload.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/simpleperf/workload.h b/simpleperf/workload.h
index cfb5fece..22718a99 100644
--- a/simpleperf/workload.h
+++ b/simpleperf/workload.h
@@ -25,6 +25,8 @@
#include <android-base/macros.h>
+namespace simpleperf {
+
class Workload {
private:
enum WorkState {
@@ -71,4 +73,6 @@ class Workload {
DISALLOW_COPY_AND_ASSIGN(Workload);
};
+} // namespace simpleperf
+
#endif // SIMPLE_PERF_WORKLOAD_H_