| 37 | Status ReadEventFromFile(const string& dump_file_path, Event* event); |
| 38 | |
| 39 | struct DebugWatchAndURLSpec { |
| 40 | DebugWatchAndURLSpec(const string& watch_key, const string& url, |
| 41 | const bool gated_grpc) |
| 42 | : watch_key(watch_key), url(url), gated_grpc(gated_grpc) {} |
| 43 | |
| 44 | const string watch_key; |
| 45 | const string url; |
| 46 | const bool gated_grpc; |
| 47 | }; |
| 48 | |
| 49 | // TODO(cais): Put static functions and members in a namespace, not a class. |
| 50 | class DebugIO { |