| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
LGTM, with some nits
} // namespace actorWhy not put this whole class in the `actor` namespace? Then this and the .mm file can avoid qualifying with the namespace throughout.
class ActorServiceTest : public PlatformTest {nit: can also be pulled into actor namespace
ActorTaskId task_id(base::Token(0, 1));nit: can this just be the default ctor? I picked 1 arbitrarily here and it has no behavioral impact iirc. Same throughout.
using ToolExecutionResult = base::expected<void, ActorToolError>;Ideally this change is in a separate CL, but seems fine to me since you're updating most callsites already.
actor::ActorTool::ToolExecutionCallback callback);nit: can be dropped now
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |