OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2010, Google Inc. All rights reserved. | 2 * Copyright (c) 2010, Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 18 matching lines...) Expand all Loading... |
29 */ | 29 */ |
30 | 30 |
31 #ifndef V8_INSPECTOR_V8INSPECTORIMPL_H_ | 31 #ifndef V8_INSPECTOR_V8INSPECTORIMPL_H_ |
32 #define V8_INSPECTOR_V8INSPECTORIMPL_H_ | 32 #define V8_INSPECTOR_V8INSPECTORIMPL_H_ |
33 | 33 |
34 #include <vector> | 34 #include <vector> |
35 | 35 |
36 #include "src/base/macros.h" | 36 #include "src/base/macros.h" |
37 #include "src/inspector/protocol/Protocol.h" | 37 #include "src/inspector/protocol/Protocol.h" |
38 | 38 |
| 39 #include "include/v8-debug.h" |
39 #include "include/v8-inspector.h" | 40 #include "include/v8-inspector.h" |
40 | 41 |
41 namespace v8_inspector { | 42 namespace v8_inspector { |
42 | 43 |
43 class InspectedContext; | 44 class InspectedContext; |
44 class V8ConsoleMessageStorage; | 45 class V8ConsoleMessageStorage; |
45 class V8Debugger; | 46 class V8Debugger; |
46 class V8DebuggerAgentImpl; | 47 class V8DebuggerAgentImpl; |
47 class V8InspectorSessionImpl; | 48 class V8InspectorSessionImpl; |
48 class V8ProfilerAgentImpl; | 49 class V8ProfilerAgentImpl; |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 ConsoleStorageMap m_consoleStorageMap; | 155 ConsoleStorageMap m_consoleStorageMap; |
155 | 156 |
156 protocol::HashMap<int, int> m_contextIdToGroupIdMap; | 157 protocol::HashMap<int, int> m_contextIdToGroupIdMap; |
157 | 158 |
158 DISALLOW_COPY_AND_ASSIGN(V8InspectorImpl); | 159 DISALLOW_COPY_AND_ASSIGN(V8InspectorImpl); |
159 }; | 160 }; |
160 | 161 |
161 } // namespace v8_inspector | 162 } // namespace v8_inspector |
162 | 163 |
163 #endif // V8_INSPECTOR_V8INSPECTORIMPL_H_ | 164 #endif // V8_INSPECTOR_V8INSPECTORIMPL_H_ |
OLD | NEW |