Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 module mojo.common.mojom; | |
| 6 | |
| 7 struct ProcessId { | |
| 8 // This is the storage for the pid, on windows tje pid is a DWORD an the | |
|
Ken Rockot(use gerrit already)
2017/04/18 22:11:24
nit: tje=the, an=and
fmeawad
2017/04/19 21:07:21
Done.
| |
| 9 // value can be DWORD_MAX which maps gracefully to uint32 while on linux | |
| 10 // the pid is a signed int with a max value of 2^22. | |
| 11 uint32 pid; | |
| 12 }; | |
| OLD | NEW |