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

Unified Diff: content/gpu/gpu_process.cc

Issue 1690173004: content: Increase thread priority for display critical IO threads on ChromeOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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: content/gpu/gpu_process.cc
diff --git a/content/gpu/gpu_process.cc b/content/gpu/gpu_process.cc
index 23906943d1857fbd33951e692a7153c3e6190a7b..99b2a651f7ce5ef819eded745d69eb6bd1131073 100644
--- a/content/gpu/gpu_process.cc
+++ b/content/gpu/gpu_process.cc
@@ -6,7 +6,8 @@
namespace content {
-GpuProcess::GpuProcess() {
+GpuProcess::GpuProcess(base::ThreadPriority io_thread_priority)
+ : ChildProcess(io_thread_priority) {
}
GpuProcess::~GpuProcess() {

Powered by Google App Engine
This is Rietveld 408576698