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

Unified Diff: content/browser/renderer_host/database_message_filter.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: content/browser/renderer_host/database_message_filter.cc
diff --git a/content/browser/renderer_host/database_message_filter.cc b/content/browser/renderer_host/database_message_filter.cc
index 98d930629a177c2e3af031b6daa5ea0db531228e..d29b29462e30566b07d2962d8494f97d20a196a2 100644
--- a/content/browser/renderer_host/database_message_filter.cc
+++ b/content/browser/renderer_host/database_message_filter.cc
@@ -167,8 +167,7 @@ void DatabaseMessageFilter::OnDatabaseOpenFile(
} else if (tracked_file) {
DCHECK(tracked_file->IsValid());
*handle =
- IPC::GetFileHandleForProcess(tracked_file->GetPlatformFile(),
- PeerHandle(), false);
+ IPC::GetPlatformFileForTransit(tracked_file->GetPlatformFile(), false);
}
}

Powered by Google App Engine
This is Rietveld 408576698