| 2571 | } |
| 2572 | |
| 2573 | inline void push(const AsyncLogItem& item) { |
| 2574 | base::threading::ScopedLock scopedLock(lock()); |
| 2575 | m_queue.push(item); |
| 2576 | } |
| 2577 | inline void pop(void) { |
| 2578 | base::threading::ScopedLock scopedLock(lock()); |
| 2579 | m_queue.pop(); |
no outgoing calls
no test coverage detected