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

Unified Diff: content/public/browser/zygote_handle_linux.h

Issue 2850903002: Clean up Linux zygote creation code (Closed)
Patch Set: Created 3 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/public/browser/zygote_handle_linux.h
diff --git a/content/public/browser/zygote_handle_linux.h b/content/public/browser/zygote_handle_linux.h
index 6419b7475b697bd692b6d2b1f8be86af40cbcb71..633732291feb314a24d2c4968aadbaaad01e8f0a 100644
--- a/content/public/browser/zygote_handle_linux.h
+++ b/content/public/browser/zygote_handle_linux.h
@@ -10,14 +10,15 @@
namespace content {
-// Allocates and initializes a zygote process, and returns the
+// Allocates and initializes the global generic zygote process, and returns the
// ZygoteHandle used to communicate with it.
-CONTENT_EXPORT ZygoteHandle CreateZygote();
+CONTENT_EXPORT ZygoteHandle CreateGenericZygote();
// Returns a handle to a global generic zygote object. This function allows the
// browser to launch and use a single zygote process until the performance
// issues around launching multiple zygotes are resolved.
-CONTENT_EXPORT ZygoteHandle* GetGenericZygote();
+// http://crbug.com/569191
+CONTENT_EXPORT ZygoteHandle GetGenericZygote();
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698