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

Unified Diff: mojo/edk/embedder/platform_channel_pair.h

Issue 2950153002: Improve process launch handle sharing API. (Closed)
Patch Set: Fix Created 3 years, 6 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: mojo/edk/embedder/platform_channel_pair.h
diff --git a/mojo/edk/embedder/platform_channel_pair.h b/mojo/edk/embedder/platform_channel_pair.h
index 9c93f760948725770bd1e410e75991691b2dba50..a70559dc7845f149dd1cadaa28a29af4dc12d8a8 100644
--- a/mojo/edk/embedder/platform_channel_pair.h
+++ b/mojo/edk/embedder/platform_channel_pair.h
@@ -23,7 +23,7 @@ namespace edk {
// It would be nice to refactor base/process/launch.h to have a more platform-
// independent way of representing handles that are passed to child processes.
#if defined(OS_WIN)
-using HandlePassingInformation = base::HandlesToInheritVector;
+using HandlePassingInformation = std::vector<HANDLE>;
#elif defined(OS_POSIX)
using HandlePassingInformation = base::FileHandleMappingVector;
#else

Powered by Google App Engine
This is Rietveld 408576698