Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* Copyright (c) 2011 The Native Client Authors. All rights reserved. | |
|
Mark Seaborn
2011/06/13 19:40:51
Style here is:
/*
* comment
*/
garianov1
2011/06/13 20:09:10
Done.
| |
| 2 * Use of this source code is governed by a BSD-style license that can be | |
| 3 * found in the LICENSE file. | |
| 4 */ | |
| 5 | |
| 6 #ifndef SRC_TRUSTED_SERVICE_RUNTIME_NACL_OOP_DEBUGGER_HOOKS_H_ | |
| 7 #define SRC_TRUSTED_SERVICE_RUNTIME_NACL_OOP_DEBUGGER_HOOKS_H_ | |
| 8 | |
| 9 struct NaClApp; | |
| 10 struct NaClAppThread; | |
| 11 | |
| 12 void NaClOopDebuggerAppCreateHook(struct NaClApp* nap); | |
|
Mark Seaborn
2011/06/13 19:40:51
Style here is "struct Foo *foo".
garianov1
2011/06/13 20:09:10
Done.
| |
| 13 void NaClOopDebuggerThreadCreateHook(struct NaClAppThread* natp); | |
| 14 void NaClOopDebuggerThreadExitHook(struct NaClAppThread* natp, int exit_code); | |
| 15 void NaClOopDebuggerAppExitHook(int exit_code); | |
| 16 | |
| 17 #endif // SRC_TRUSTED_SERVICE_RUNTIME_NACL_OOP_DEBUGGER_HOOKS_H_ | |
| 18 | |
| OLD | NEW |