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

Unified Diff: chrome/browser/media_galleries/fileapi/safe_iapps_library_parser.cc

Issue 1862333002: ipc: Rename TakeFileHandleForProcess->TakePlatformFileForTransit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile errors. 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/browser/media_galleries/fileapi/safe_iapps_library_parser.cc
diff --git a/chrome/browser/media_galleries/fileapi/safe_iapps_library_parser.cc b/chrome/browser/media_galleries/fileapi/safe_iapps_library_parser.cc
index 53e5bd04a236ed186c463ce6e8dc9971fb3aa7b4..abedc36974a8fe3d1e2127536282074c091a7933 100644
--- a/chrome/browser/media_galleries/fileapi/safe_iapps_library_parser.cc
+++ b/chrome/browser/media_galleries/fileapi/safe_iapps_library_parser.cc
@@ -84,9 +84,7 @@ void SafeIAppsLibraryParser::OnUtilityProcessStarted() {
if (!itunes_callback_.is_null()) {
utility_process_host_->Send(new ChromeUtilityMsg_ParseITunesLibraryXmlFile(
- IPC::TakeFileHandleForProcess(
- std::move(library_file_),
- utility_process_host_->GetData().handle)));
+ IPC::TakePlatformFileForTransit(std::move(library_file_))));
}
parser_state_ = STARTED_PARSING_STATE;

Powered by Google App Engine
This is Rietveld 408576698