| 79 | } |
| 80 | |
| 81 | bool ResourceHandle::ParseFromString(const string& s) { |
| 82 | ResourceHandleProto proto; |
| 83 | return proto.ParseFromString(s) && FromProto(proto).ok(); |
| 84 | } |
| 85 | |
| 86 | string ResourceHandle::DebugString() const { |
| 87 | return strings::StrCat("device: ", device(), " container: ", container(), |