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

Unified Diff: content/common/send_zygote_child_ping_linux.cc

Issue 1146813011: Move UnixDomainSocket to base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 | « content/common/font_config_ipc_linux.cc ('k') | content/zygote/zygote_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/send_zygote_child_ping_linux.cc
diff --git a/content/common/send_zygote_child_ping_linux.cc b/content/common/send_zygote_child_ping_linux.cc
index 1a4f49f8ae013d938456a8a042f4f11c714e73d4..f3cfcbce299202e798d776469f1463f27d97409e 100644
--- a/content/common/send_zygote_child_ping_linux.cc
+++ b/content/common/send_zygote_child_ping_linux.cc
@@ -12,10 +12,10 @@
namespace content {
bool SendZygoteChildPing(int fd) {
- return UnixDomainSocket::SendMsg(fd,
- kZygoteChildPingMessage,
- sizeof(kZygoteChildPingMessage),
- std::vector<int>());
+ return base::UnixDomainSocket::SendMsg(fd,
+ kZygoteChildPingMessage,
+ sizeof(kZygoteChildPingMessage),
+ std::vector<int>());
}
} // namespace content
« no previous file with comments | « content/common/font_config_ipc_linux.cc ('k') | content/zygote/zygote_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698