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

Unified Diff: chrome/browser/chromeos/arc/arc_process_service.cc

Issue 2199353002: Remove deprecated priority-less SequencedWorkerPool constructor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@b3_mix
Patch Set: ArcProcessService => USER_VISIBLE Created 4 years, 4 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 | « base/threading/sequenced_worker_pool.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/arc/arc_process_service.cc
diff --git a/chrome/browser/chromeos/arc/arc_process_service.cc b/chrome/browser/chromeos/arc/arc_process_service.cc
index 78a203c3ef96ff2c98bb847985a5e8c06e68666b..e9f8b5250ea558e2d5d46f88ec85d79803b135e1 100644
--- a/chrome/browser/chromeos/arc/arc_process_service.cc
+++ b/chrome/browser/chromeos/arc/arc_process_service.cc
@@ -40,7 +40,9 @@ using std::vector;
ArcProcessService::ArcProcessService(ArcBridgeService* bridge_service)
: ArcService(bridge_service),
- worker_pool_(new SequencedWorkerPool(1, "arc_process_manager")),
+ worker_pool_(new SequencedWorkerPool(1,
+ "arc_process_manager",
+ base::TaskPriority::USER_VISIBLE)),
weak_ptr_factory_(this) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
arc_bridge_service()->process()->AddObserver(this);
« no previous file with comments | « base/threading/sequenced_worker_pool.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698