Chromium Code Reviews| Index: content/browser/zygote_host/zygote_handle_linux.cc |
| diff --git a/content/browser/zygote_host/zygote_handle_linux.cc b/content/browser/zygote_host/zygote_handle_linux.cc |
| index 89adc49385b4364803f4cd14fc64a4e7fbfa25d6..8aaa03130fe2000f1d6653008d94ac89a0edf8dc 100644 |
| --- a/content/browser/zygote_host/zygote_handle_linux.cc |
| +++ b/content/browser/zygote_host/zygote_handle_linux.cc |
| @@ -14,4 +14,9 @@ ZygoteHandle CreateZygote() { |
| return zygote; |
| } |
| +ZygoteHandle GetGenericZygote() { |
|
mdempsky
2016/01/28 23:25:40
Change to:
ZygoteHandle* GetGenericZygote() {
Greg K
2016/01/29 00:41:03
Done.
|
| + static ZygoteHandle zygote = CreateZygote(); |
| + return zygote; |
| +} |
| + |
| } // namespace content |