| 247 | } |
| 248 | |
| 249 | void MetalinesBuilder::MergeInto(MetalinesBuilder & collector) const |
| 250 | { |
| 251 | CHECK(!m_writer || !collector.m_writer, ("Finish() has not been called.")); |
| 252 | base::AppendFileToFile(GetTmpFilename(), collector.GetTmpFilename()); |
| 253 | } |
| 254 | |
| 255 | // Functions -------------------------------------------------------------------------------- |
| 256 | bool WriteMetalinesSection(std::string const & mwmPath, std::string const & metalinesPath, |
nothing calls this directly
no test coverage detected