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

Unified Diff: components/arc/arc_bridge_bootstrap.cc

Issue 2118083002: ShellClient -> Service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mus2
Patch Set: . Created 4 years, 5 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 | « chromecast/browser/cast_content_browser_client.cc ('k') | components/filesystem/file_system_app.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/arc_bridge_bootstrap.cc
diff --git a/components/arc/arc_bridge_bootstrap.cc b/components/arc/arc_bridge_bootstrap.cc
index 930282e9425990b079d78493b45cbc104808c7ac..77e15c42adb2ac02ae8a596d108ca3b0be1f95d6 100644
--- a/components/arc/arc_bridge_bootstrap.cc
+++ b/components/arc/arc_bridge_bootstrap.cc
@@ -282,7 +282,7 @@ void ArcBridgeBootstrapImpl::OnInstanceStarted(base::ScopedFD socket_fd,
base::ScopedFD ArcBridgeBootstrapImpl::AcceptInstanceConnection(
base::ScopedFD socket_fd) {
int raw_fd = -1;
- if (!IPC::ServerAcceptConnection(socket_fd.get(), &raw_fd)) {
+ if (!IPC::ServerOnConnect(socket_fd.get(), &raw_fd)) {
return base::ScopedFD();
}
base::ScopedFD scoped_fd(raw_fd);
« no previous file with comments | « chromecast/browser/cast_content_browser_client.cc ('k') | components/filesystem/file_system_app.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698