Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/sessions/session_id.h" | 5 #ifndef MOJO_MONACL_MONACL_SYSCALL_H_ |
| 6 #define MOJO_MONACL_MONACL_SYSCALL_H_ | |
| 6 | 7 |
| 7 static SessionID::id_type next_id = 1; | 8 void InjectMojo(struct NaClApp *nap); |
|
Mark Seaborn
2014/09/09 19:13:12
"* " spacing
Nick Bray (chromium)
2014/09/09 23:12:33
Done.
| |
| 8 | 9 |
| 9 SessionID::SessionID() { | 10 #endif // MOJO_MONACL_MONACL_SYSCALL_H_ |
| 10 id_ = next_id++; | |
| 11 } | |
| OLD | NEW |