| 200 | } |
| 201 | |
| 202 | void RestrictionWriter::MergeInto(RestrictionWriter & collector) const |
| 203 | { |
| 204 | CHECK(!m_stream.is_open() || !collector.m_stream.is_open(), ("Finish() has not been called.")); |
| 205 | base::AppendFileToFile(GetTmpFilename(), collector.GetTmpFilename()); |
| 206 | } |
| 207 | |
| 208 | std::string DebugPrint(RestrictionWriter::ViaType const & type) |
| 209 | { |
nothing calls this directly
no test coverage detected