Chromium Code Reviews| Index: src/trusted/debug_stub/platform.h |
| =================================================================== |
| --- src/trusted/debug_stub/platform.h (revision 9590) |
| +++ src/trusted/debug_stub/platform.h (working copy) |
| @@ -17,6 +17,8 @@ |
| #include "native_client/src/include/portability.h" |
| #include "native_client/src/trusted/debug_stub/transport.h" |
| +struct NaClApp; |
| + |
| namespace port { |
| class IPlatform { |
| @@ -29,7 +31,8 @@ |
| // page if needed to provide access. It should only return false if |
| // the page is not mapped into the debugged process. |
| static bool GetMemory(uint64_t address, uint32_t length, void *dst); |
| - static bool SetMemory(uint64_t address, uint32_t length, void *src); |
| + static bool SetMemory(struct NaClApp* nap, uint64_t address, uint32_t length, |
|
Mark Seaborn
2012/08/29 17:29:43
Use the " *" spacing style, please
halyavin
2012/08/30 09:46:28
Done.
|
| + void *src); |
| }; |
| } // namespace port |