| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
: Thread("ThreadPoolServiceThread", Thread::Restartable{}) {}We restart the service thread?!
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
: Thread("ThreadPoolServiceThread", Thread::Restartable{}) {}We restart the service thread?!
I doubled check, I guess I was wrong (I though we did in GPU process); CQ is green without it
bool restartable_ = false;Etienne Pierre-Dorayconst
Done
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
bool joinable_ = true;It's kind of weird that `joinable` is specified differently, these both feel like traits that should be specified at the same time? Add non-blocking TODO perhaps?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
It's kind of weird that `joinable` is specified differently, these both feel like traits that should be specified at the same time? Add non-blocking TODO perhaps?
I somewhat agree this is a bit weird; however:
Come to think of it, being non joinable implies non restartable; I could see this being an enum given at construction; added a TODO.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
+dtapuska@ for content/
+alexnj@ for chrome/test
+dalecurtis@ for services/audio
+blundell@ for gpu/
+mpdenton@ for sandbox/linux
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
//gpu lgtm, thanks! Didn't look at anything else.
ml_model_manager_(ml_model_manager)This needs ` "," after it no?
ml_model_manager_(ml_model_manager)This needs ` "," after it no?
This is the last member in the initialization list when the macro below is disabled, so the comma has to be within the macro, and that gives weird formatting 😞
Etienne Pierre-DorayRemove extra line
Acknowledged
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
chromecast/ lgtm
-mpdenton@ (OOO)
+ajgo@ for sandbox/linux/services
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
[task] Inject ThreadDelegate through Thread constructor
Passing the custom delegate in constructor improves encapsulation, and allows a derived class to inject its own delegate
(needed in follow up
https://chromium-review.git.corp.google.com/c/chromium/src/+/3399727)
Doing so however prevents a thread to be re-started; a Restartable
option is added to Thread and few cases are fixed.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |