| 150 | } |
| 151 | |
| 152 | string Profile(const string* command, const string* options) { |
| 153 | CHECK(tf_stat); |
| 154 | CHECK(command) << "command mustn't be null"; |
| 155 | CHECK(options) << "options mustn't be null"; |
| 156 | return RunProfile(*command, *options, tf_stat); |
| 157 | } |
| 158 | |
| 159 | string SerializeToString() { |
| 160 | CHECK(tf_stat); |
nothing calls this directly
no test coverage detected