OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright 2010 The Native Client Authors. All rights reserved. | 2 * Copyright 2010 The Native Client Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can | 3 * Use of this source code is governed by a BSD-style license that can |
4 * be found in the LICENSE file. | 4 * be found in the LICENSE file. |
5 */ | 5 */ |
6 #ifndef NATIVE_CLIENT_GDB_RSP_SESSION_MOCK_H_ | 6 #ifndef SRC_TRUSTED_GDB_RSP_SESSION_MOCK_H_ |
7 #define NATIVE_CLIENT_GDB_RSP_SESSION_MOCK_H_ 1 | 7 #define SRC_TRUSTED_GDB_RSP_SESSION_MOCK_H_ 1 |
8 | 8 |
noelallen_use_chromium
2010/12/13 19:28:10
Did you mean to remove this from the CL?
This stil
mlinck
2010/12/14 17:23:24
removed. The weird guard change was the only thin
| |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "native_client/src/trusted/gdb_rsp/packet.h" | 12 #include "native_client/src/trusted/gdb_rsp/packet.h" |
13 #include "native_client/src/trusted/gdb_rsp/session.h" | 13 #include "native_client/src/trusted/gdb_rsp/session.h" |
14 #include "native_client/src/trusted/port/platform.h" | 14 #include "native_client/src/trusted/port/platform.h" |
15 #include "native_client/src/trusted/port/transport.h" | 15 #include "native_client/src/trusted/port/transport.h" |
16 | 16 |
17 namespace gdb_rsp { | 17 namespace gdb_rsp { |
18 | 18 |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
68 }; | 68 }; |
69 | 69 |
70 SessionMock *GetGoldenSessionMock(bool target, bool debug); | 70 SessionMock *GetGoldenSessionMock(bool target, bool debug); |
71 void AddMockInit(SessionMock *ses); | 71 void AddMockInit(SessionMock *ses); |
72 void AddMockUpdate(SessionMock *ses, uint8_t sig); | 72 void AddMockUpdate(SessionMock *ses, uint8_t sig); |
73 | 73 |
74 | 74 |
75 | 75 |
76 } // namespace gdb_rsp | 76 } // namespace gdb_rsp |
77 | 77 |
78 #endif // NATIVE_CLIENT_GDB_RSP_SESSION_MOCK_H_ | 78 #endif // SRC_TRUSTED_GDB_RSP_SESSION_MOCK_H_ |
OLD | NEW |