Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(546)

Unified Diff: components/scheduler/child/compositor_worker_scheduler.cc

Issue 1942053002: Deletes base::MessageLoop::set_thread_name(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed media_unittests Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/scheduler/child/compositor_worker_scheduler.cc
diff --git a/components/scheduler/child/compositor_worker_scheduler.cc b/components/scheduler/child/compositor_worker_scheduler.cc
index 38a8a4a5129a03c043863e94f4ed5d657c4f0bae..aacb17f2ae5d0fc0a44f8666098843e04c604d39 100644
--- a/components/scheduler/child/compositor_worker_scheduler.cc
+++ b/components/scheduler/child/compositor_worker_scheduler.cc
@@ -36,6 +36,10 @@ class CompositorWorkerTaskRunnerWrapper : public TaskQueue {
return task_runner_->PostNonNestableDelayedTask(from_here, task, delay);
}
+ std::string GetThreadName() const override {
+ return task_runner_->GetThreadName();
+ }
+
void SetQueueEnabled(bool enabled) override { NOTREACHED(); }
bool IsQueueEnabled() const override {

Powered by Google App Engine
This is Rietveld 408576698