ipc: Rename TakeFileHandleForProcess->TakePlatformFileForTransit.

This CL has no intended behavior change. This CL also removes the now
unnecessary parameter |process|.

BUG=493414

Review URL: https://codereview.chromium.org/1862333002

Cr-Commit-Position: refs/heads/master@{#385781}


CrOS-Libchrome-Original-Commit: 41e608362245c754380232a2effdce714987f530
diff --git a/ipc/ipc_platform_file.cc b/ipc/ipc_platform_file.cc
index 2dcc9aa..dbcfddc 100644
--- a/ipc/ipc_platform_file.cc
+++ b/ipc/ipc_platform_file.cc
@@ -44,8 +44,7 @@
 #endif
 }
 
-PlatformFileForTransit TakeFileHandleForProcess(base::File file,
-                                                base::ProcessHandle process) {
+PlatformFileForTransit TakePlatformFileForTransit(base::File file) {
   return GetPlatformFileForTransit(file.TakePlatformFile(), true);
 }