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 19 matching lines...) Expand all Loading... |
30 | 30 |
31 #ifndef WebDevToolsAgentImpl_h | 31 #ifndef WebDevToolsAgentImpl_h |
32 #define WebDevToolsAgentImpl_h | 32 #define WebDevToolsAgentImpl_h |
33 | 33 |
34 #include <memory> | 34 #include <memory> |
35 | 35 |
36 #include "core/inspector/InspectorPageAgent.h" | 36 #include "core/inspector/InspectorPageAgent.h" |
37 #include "core/inspector/InspectorSession.h" | 37 #include "core/inspector/InspectorSession.h" |
38 #include "core/inspector/InspectorTracingAgent.h" | 38 #include "core/inspector/InspectorTracingAgent.h" |
39 #include "platform/heap/Handle.h" | 39 #include "platform/heap/Handle.h" |
| 40 #include "platform/wtf/Forward.h" |
| 41 #include "platform/wtf/Vector.h" |
40 #include "public/platform/WebSize.h" | 42 #include "public/platform/WebSize.h" |
41 #include "public/platform/WebThread.h" | 43 #include "public/platform/WebThread.h" |
42 #include "public/web/WebDevToolsAgent.h" | 44 #include "public/web/WebDevToolsAgent.h" |
43 #include "web/InspectorEmulationAgent.h" | 45 #include "web/InspectorEmulationAgent.h" |
44 #include "wtf/Forward.h" | |
45 #include "wtf/Vector.h" | |
46 | 46 |
47 namespace blink { | 47 namespace blink { |
48 | 48 |
49 class GraphicsLayer; | 49 class GraphicsLayer; |
50 class InspectedFrames; | 50 class InspectedFrames; |
51 class InspectorOverlay; | 51 class InspectorOverlay; |
52 class InspectorResourceContainer; | 52 class InspectorResourceContainer; |
53 class InspectorResourceContentLoader; | 53 class InspectorResourceContentLoader; |
54 class InspectorTraceEvents; | 54 class InspectorTraceEvents; |
55 class LocalFrame; | 55 class LocalFrame; |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 Member<InspectorTraceEvents> m_traceEventsAgent; | 162 Member<InspectorTraceEvents> m_traceEventsAgent; |
163 | 163 |
164 Member<InspectorSession> m_session; | 164 Member<InspectorSession> m_session; |
165 bool m_includeViewAgents; | 165 bool m_includeViewAgents; |
166 int m_layerTreeId; | 166 int m_layerTreeId; |
167 }; | 167 }; |
168 | 168 |
169 } // namespace blink | 169 } // namespace blink |
170 | 170 |
171 #endif | 171 #endif |
OLD | NEW |