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

Unified Diff: content/child/mojo/mojo_application.cc

Issue 1830853002: Make PlatformFileForTransit a class on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments from mseaborn. Created 4 years, 9 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
« no previous file with comments | « components/nacl/renderer/ppb_nacl_private_impl.cc ('k') | content/common/sandbox_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/mojo/mojo_application.cc
diff --git a/content/child/mojo/mojo_application.cc b/content/child/mojo/mojo_application.cc
index 7948ccb331b8960ce25777cd8356f881ee11c042..cd369d3d541e95437d3f0a4fc197adde0138ece7 100644
--- a/content/child/mojo/mojo_application.cc
+++ b/content/child/mojo/mojo_application.cc
@@ -39,7 +39,7 @@ void MojoApplication::OnActivate(
#if defined(OS_POSIX)
base::PlatformFile handle = file.fd;
#elif defined(OS_WIN)
- base::PlatformFile handle = file;
+ base::PlatformFile handle = file.GetHandle();
#endif
mojo::ScopedMessagePipeHandle pipe =
« no previous file with comments | « components/nacl/renderer/ppb_nacl_private_impl.cc ('k') | content/common/sandbox_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698