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

Unified Diff: content/renderer/render_thread_impl.h

Issue 1192633003: content: Rename raster threads to worker threads. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « content/public/common/content_switches.cc ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_thread_impl.h
diff --git a/content/renderer/render_thread_impl.h b/content/renderer/render_thread_impl.h
index 52fc453483f65bc86f1f93f2c273c0937b244a52..a9874ad1cffa6b89756aa22702069b95de8edd9d 100644
--- a/content/renderer/render_thread_impl.h
+++ b/content/renderer/render_thread_impl.h
@@ -564,8 +564,8 @@ class CONTENT_EXPORT RenderThreadImpl
// regardless of whether |compositor_thread_| is overriden.
scoped_refptr<base::SingleThreadTaskRunner> compositor_task_runner_;
- // Threads used by compositor for rasterization.
- ScopedVector<base::SimpleThread> compositor_raster_threads_;
+ // Threads for running background tasks (e.g. rasterization).
+ ScopedVector<base::SimpleThread> worker_threads_;
base::CancelableCallback<void(const IPC::Message&)> main_input_callback_;
scoped_refptr<IPC::MessageFilter> input_event_filter_;
@@ -597,7 +597,7 @@ class CONTENT_EXPORT RenderThreadImpl
scoped_refptr<ResourceSchedulingFilter> resource_scheduling_filter_;
- scoped_ptr<cc::TaskGraphRunner> compositor_task_graph_runner_;
+ scoped_ptr<cc::TaskGraphRunner> task_graph_runner_;
// Compositor settings.
bool is_gpu_rasterization_enabled_;
« no previous file with comments | « content/public/common/content_switches.cc ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698