| 405 | PrintBacktraceOutputHandler() {} |
| 406 | |
| 407 | virtual void HandleOutput(const char* output) OVERRIDE { |
| 408 | // NOTE: This code MUST be async-signal safe (it's used by in-process |
| 409 | // stack dumping signal handler). NO malloc or stdio is allowed here. |
| 410 | PrintToStderr(output); |
| 411 | } |
| 412 | |
| 413 | private: |
| 414 | DISALLOW_COPY_AND_ASSIGN(PrintBacktraceOutputHandler); |
no test coverage detected