| 328 | } |
| 329 | |
| 330 | virtual size_t Size() const OVERRIDE { |
| 331 | // This is approximate because not all of the chunks are full. |
| 332 | return chunks_.size() * kTraceBufferChunkSize; |
| 333 | } |
| 334 | |
| 335 | virtual size_t Capacity() const OVERRIDE { |
| 336 | return kTraceEventVectorBufferChunks * kTraceBufferChunkSize; |
no test coverage detected