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

Unified Diff: components/arc/arc_bridge_service.cc

Issue 1452013006: arc-bridge: Fix a DCHECK (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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: components/arc/arc_bridge_service.cc
diff --git a/components/arc/arc_bridge_service.cc b/components/arc/arc_bridge_service.cc
index 34c215e93daf65ce4e67f333e2f3d5b924be6687..6565416c8a57115ecc3142bb9a2b7ccb591a010d 100644
--- a/components/arc/arc_bridge_service.cc
+++ b/components/arc/arc_bridge_service.cc
@@ -125,7 +125,7 @@ void ArcBridgeService::StopInstance() {
bool ArcBridgeService::RegisterInputDevice(const std::string& name,
const std::string& device_type,
base::ScopedFD fd) {
- DCHECK(ipc_task_runner_->RunsTasksOnCurrentThread());
+ DCHECK(origin_task_runner_->RunsTasksOnCurrentThread());
if (state_ != State::READY) {
LOG(ERROR) << "Called RegisterInputDevice when the service is not ready";
return false;
« 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