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

Unified Diff: chrome/common/service_process_util_mac.mm

Issue 2500263004: Remove ipc/unix_domain_socket_util.* (Closed)
Patch Set: rebase Created 4 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 | « chrome/common/DEPS ('k') | components/arc/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/service_process_util_mac.mm
diff --git a/chrome/common/service_process_util_mac.mm b/chrome/common/service_process_util_mac.mm
index 3b4e0200a076afa3bf588e6f948694bb8a078550..f41238b5c78ca284487aeede67dee2dc6b0f019b 100644
--- a/chrome/common/service_process_util_mac.mm
+++ b/chrome/common/service_process_util_mac.mm
@@ -27,7 +27,7 @@
#include "chrome/common/mac/launchd.h"
#include "chrome/common/service_process_util_posix.h"
#include "components/version_info/version_info.h"
-#include "ipc/unix_domain_socket_util.h"
+#include "mojo/edk/embedder/named_platform_handle_utils.h"
@interface NSFileManager (YosemiteSDK)
- (BOOL)getRelationship:(NSURLRelationship*)outRelationship
@@ -94,7 +94,7 @@ base::FilePath GetServiceProcessSocketName() {
PathService::Get(base::DIR_TEMP, &socket_name);
std::string pipe_name = GetServiceProcessScopedName("srv");
socket_name = socket_name.Append(pipe_name);
- CHECK_LT(socket_name.value().size(), IPC::kMaxSocketNameLength);
+ CHECK_LT(socket_name.value().size(), mojo::edk::kMaxSocketNameLength);
return socket_name;
}
« no previous file with comments | « chrome/common/DEPS ('k') | components/arc/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698