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

Unified Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 1894043002: Enable UpdateProcessPriority() on startup on Chrome OS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/render_process_host_impl.cc
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
index f37f453192b0288959dd83880c2c4c6d2cfb4bda..2ed18f76836d18c0492ff2328622ea2652675a4b 100644
--- a/content/browser/renderer_host/render_process_host_impl.cc
+++ b/content/browser/renderer_host/render_process_host_impl.cc
@@ -2612,7 +2612,8 @@ void RenderProcessHostImpl::OnProcessLaunched() {
// is made. A better long term solution would be to be aware of the tab's
// visibility at this point. https://crbug.com/560446.
// Except on Android for now because of https://crbug.com/601184 :-(.
-#if defined(OS_ANDROID)
+ // The exception also applies to Chrome OS: https://crbug.com/601023.
+#if defined(OS_ANDROID) || defined(OS_CHROMEOS)
rjkroege 2016/04/18 17:06:07 I am not convinced that this is the right place fo
UpdateProcessPriority();
#endif
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698