| 147 | } |
| 148 | |
| 149 | ProfileEntryPrototype::ProfileEntryPrototype(const char* name, Significance significance, |
| 150 | const char* desc, TUnit::type unit) : |
| 151 | name_(name), significance_(significance), desc_(desc), |
| 152 | unit_(unit) { |
| 153 | ProfileEntryPrototypeRegistry::get()->AddPrototype(this); |
| 154 | } |
| 155 | |
| 156 | const char* ProfileEntryPrototype::SignificanceString( |
| 157 | ProfileEntryPrototype::Significance significance) { |
nothing calls this directly
no test coverage detected