| 43 | } |
| 44 | |
| 45 | void CollectorTag::Save() |
| 46 | { |
| 47 | CHECK(!m_stream.is_open(), ("Finish() has not been called.")); |
| 48 | if (Platform::IsFileExistsByFullPath(GetTmpFilename())) |
| 49 | CHECK(base::CopyFileX(GetTmpFilename(), GetFilename()), ()); |
| 50 | } |
| 51 | |
| 52 | void CollectorTag::OrderCollectedData() |
| 53 | { |
nothing calls this directly
no test coverage detected