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

Unified Diff: base/threading/platform_thread_win.cc

Issue 1739993004: content: Implement dynamic priorities for raster threads. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: preparing for checkin. Created 4 years, 9 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: base/threading/platform_thread_win.cc
diff --git a/base/threading/platform_thread_win.cc b/base/threading/platform_thread_win.cc
index d5bd9bed08e7978714d989c2a3afcf4a135bed69..15638b73b3a3dc1f716bf53234ccd4c9f872eca6 100644
--- a/base/threading/platform_thread_win.cc
+++ b/base/threading/platform_thread_win.cc
@@ -281,4 +281,13 @@ ThreadPriority PlatformThread::GetCurrentThreadPriority() {
}
}
+// static
+bool PlatformThread::SetChildThreadPriorityInCurrentProcess(
+ PlatformThreadHandle thread_handle,
+ PlatformThreadId tid,
+ ThreadPriority priority) {
+ NOTIMPLEMENTED();
+ return false;
+}
+
} // namespace base

Powered by Google App Engine
This is Rietveld 408576698