| 60 | } |
| 61 | |
| 62 | string ProcessStateInfo::GetString(const string& state_key) const { |
| 63 | ProcessStateMap::const_iterator it = process_state_map_.find(state_key); |
| 64 | if (it != process_state_map_.end()) return it->second; |
| 65 | return string(); |
| 66 | } |
| 67 | |
| 68 | int64_t ProcessStateInfo::GetBytes(const string& state_key) const { |
| 69 | ProcessStateMap::const_iterator it = process_state_map_.find(state_key); |