From af947729dc2aa7cdb6d4a716e2edf307710a8155 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Wed, 2 Mar 2022 11:04:47 +0000 Subject: IVGCVSW-6811 replace ProfilingService includes with IProfilingService Change-Id: I00521756c8a19d10bfdc98c6ef4204c7f84901c6 Signed-off-by: Jim Flynn --- src/profiling/ProfilingService.cpp | 27 --------------------------- 1 file changed, 27 deletions(-) (limited to 'src/profiling/ProfilingService.cpp') diff --git a/src/profiling/ProfilingService.cpp b/src/profiling/ProfilingService.cpp index cef8a6d9ea..2e67dc870d 100644 --- a/src/profiling/ProfilingService.cpp +++ b/src/profiling/ProfilingService.cpp @@ -21,23 +21,6 @@ namespace arm namespace pipe { -ProfilingGuidGenerator ProfilingService::m_GuidGenerator; - -ProfilingDynamicGuid ProfilingService::GetNextGuid() -{ - return m_GuidGenerator.NextGuid(); -} - -ProfilingStaticGuid ProfilingService::GetStaticId(const std::string& str) -{ - return m_GuidGenerator.GenerateStaticId(str); -} - -void ProfilingService::ResetGuidGenerator() -{ - m_GuidGenerator.Reset(); -} - void ProfilingService::ResetExternalProfilingOptions(const arm::pipe::ProfilingOptions& options, bool resetProfilingService) { @@ -316,16 +299,6 @@ uint32_t ProfilingService::IncrementCounterValue(uint16_t counterUid) return counterValuePtr->operator++(std::memory_order::memory_order_relaxed); } -ProfilingDynamicGuid ProfilingService::NextGuid() -{ - return ProfilingService::GetNextGuid(); -} - -ProfilingStaticGuid ProfilingService::GenerateStaticId(const std::string& str) -{ - return ProfilingService::GetStaticId(str); -} - std::unique_ptr ProfilingService::GetSendTimelinePacket() const { return m_TimelinePacketWriterFactory.GetSendTimelinePacket(); -- cgit v1.2.1