| 2725 | } |
| 2726 | |
| 2727 | inline std::string getThreadName(const std::string& threadId) { |
| 2728 | std::map<std::string, std::string>::const_iterator it = m_threadNames.find(threadId); |
| 2729 | if (it == m_threadNames.end()) { |
| 2730 | return threadId; |
| 2731 | } |
| 2732 | return it->second; |
| 2733 | } |
| 2734 | private: |
| 2735 | base::RegisteredHitCounters* m_registeredHitCounters; |
| 2736 | base::RegisteredLoggers* m_registeredLoggers; |
no test coverage detected