Commit a51f1167 authored by reveman's avatar reveman Committed by Commit bot

Restore compositor worker thread names.

Some of our tests apparently rely on these threads having
specific names.

BUG=470091

Review URL: https://codereview.chromium.org/1036923002

Cr-Commit-Position: refs/heads/master@{#322303}
parent be705879
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
namespace cc { namespace cc {
TestTaskGraphRunner::TestTaskGraphRunner() TestTaskGraphRunner::TestTaskGraphRunner()
: worker_thread_(this, "CompositorWorker") { : worker_thread_(this, "CompositorTileWorker1") {
worker_thread_.Start(); worker_thread_.Start();
} }
......
...@@ -72,7 +72,7 @@ namespace { ...@@ -72,7 +72,7 @@ namespace {
class RasterThread : public base::SimpleThread { class RasterThread : public base::SimpleThread {
public: public:
RasterThread(cc::TaskGraphRunner* task_graph_runner) RasterThread(cc::TaskGraphRunner* task_graph_runner)
: base::SimpleThread("UICompositorWorker"), : base::SimpleThread("CompositorTileWorker1"),
task_graph_runner_(task_graph_runner) {} task_graph_runner_(task_graph_runner) {}
// Overridden from base::SimpleThread: // Overridden from base::SimpleThread:
......
...@@ -143,7 +143,8 @@ class SingleThreadTaskGraphRunner ...@@ -143,7 +143,8 @@ class SingleThreadTaskGraphRunner
: public cc::TaskGraphRunner, : public cc::TaskGraphRunner,
public base::DelegateSimpleThread::Delegate { public base::DelegateSimpleThread::Delegate {
public: public:
SingleThreadTaskGraphRunner() : worker_thread_(this, "CompositorWorker") { SingleThreadTaskGraphRunner()
: worker_thread_(this, "CompositorTileWorker1") {
worker_thread_.Start(); worker_thread_.Start();
worker_thread_.SetThreadPriority(base::kThreadPriority_Background); worker_thread_.SetThreadPriority(base::kThreadPriority_Background);
} }
......
...@@ -668,7 +668,7 @@ void RenderThreadImpl::Init() { ...@@ -668,7 +668,7 @@ void RenderThreadImpl::Init() {
new CompositorRasterThread( new CompositorRasterThread(
compositor_task_graph_runner_.get(), compositor_task_graph_runner_.get(),
base::StringPrintf( base::StringPrintf(
"CompositorWorker%u", "CompositorTileWorker%u",
static_cast<unsigned>(compositor_raster_threads_.size() + 1)) static_cast<unsigned>(compositor_raster_threads_.size() + 1))
.c_str())); .c_str()));
raster_thread->Start(); raster_thread->Start();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment