| 185 | ContextId() : id_(kEmptyId) {} |
| 186 | |
| 187 | bool IsEmpty() const { return id_ == kEmptyId; } |
| 188 | static const ContextId Empty() { return ContextId{kEmptyId}; } |
| 189 | |
| 190 | bool operator==(const ContextId& other) const { return id_ == other.id_; } |
no outgoing calls