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

Unified Diff: chrome/service/service_utility_process_host.cc

Issue 1858973002: ipc: Rename GetFileHandleForProcess->GetPlatformFileForTransit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@temp16_ipc_pfft_implementation
Patch Set: Comments from tsepez. Created 4 years, 8 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
Index: chrome/service/service_utility_process_host.cc
diff --git a/chrome/service/service_utility_process_host.cc b/chrome/service/service_utility_process_host.cc
index ee38b9b5b7e85077d1c90c58678b858579b65c63..957f3e6c63372c7224a019d46cf25a615481ff64 100644
--- a/chrome/service/service_utility_process_host.cc
+++ b/chrome/service/service_utility_process_host.cc
@@ -107,8 +107,8 @@ class ServiceUtilityProcessHost::PdfToEmfState {
emf_files_.push(CreateTempFile());
host_->Send(new ChromeUtilityMsg_RenderPDFPagesToMetafiles_GetPage(
current_page_++,
- IPC::GetFileHandleForProcess(
- emf_files_.back().GetPlatformFile(), host_->handle(), false)));
+ IPC::GetPlatformFileForTransit(
+ emf_files_.back().GetPlatformFile(), false)));
}
}

Powered by Google App Engine
This is Rietveld 408576698