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 28 matching lines...) Expand all Loading... |
39 #include "public/platform/WebThread.h" | 39 #include "public/platform/WebThread.h" |
40 #include "public/web/WebDevToolsAgent.h" | 40 #include "public/web/WebDevToolsAgent.h" |
41 #include "web/InspectorEmulationAgent.h" | 41 #include "web/InspectorEmulationAgent.h" |
42 #include "wtf/Forward.h" | 42 #include "wtf/Forward.h" |
43 #include "wtf/Vector.h" | 43 #include "wtf/Vector.h" |
44 #include <memory> | 44 #include <memory> |
45 | 45 |
46 namespace blink { | 46 namespace blink { |
47 | 47 |
48 class GraphicsLayer; | 48 class GraphicsLayer; |
| 49 class InspectorLogAgent; |
49 class InspectedFrames; | 50 class InspectedFrames; |
50 class InspectorOverlay; | 51 class InspectorOverlay; |
51 class InspectorResourceContainer; | 52 class InspectorResourceContainer; |
52 class InspectorResourceContentLoader; | 53 class InspectorResourceContentLoader; |
53 class LocalFrame; | 54 class LocalFrame; |
54 class Page; | 55 class Page; |
55 class PlatformGestureEvent; | 56 class PlatformGestureEvent; |
56 class PlatformKeyboardEvent; | 57 class PlatformKeyboardEvent; |
57 class PlatformMouseEvent; | 58 class PlatformMouseEvent; |
58 class PlatformTouchEvent; | 59 class PlatformTouchEvent; |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 Member<InspectorResourceContentLoader> m_resourceContentLoader; | 149 Member<InspectorResourceContentLoader> m_resourceContentLoader; |
149 Member<InspectorOverlay> m_overlay; | 150 Member<InspectorOverlay> m_overlay; |
150 Member<InspectedFrames> m_inspectedFrames; | 151 Member<InspectedFrames> m_inspectedFrames; |
151 Member<InspectorResourceContainer> m_resourceContainer; | 152 Member<InspectorResourceContainer> m_resourceContainer; |
152 | 153 |
153 Member<InspectorDOMAgent> m_domAgent; | 154 Member<InspectorDOMAgent> m_domAgent; |
154 Member<InspectorPageAgent> m_pageAgent; | 155 Member<InspectorPageAgent> m_pageAgent; |
155 Member<InspectorNetworkAgent> m_networkAgent; | 156 Member<InspectorNetworkAgent> m_networkAgent; |
156 Member<InspectorLayerTreeAgent> m_layerTreeAgent; | 157 Member<InspectorLayerTreeAgent> m_layerTreeAgent; |
157 Member<InspectorTracingAgent> m_tracingAgent; | 158 Member<InspectorTracingAgent> m_tracingAgent; |
| 159 Member<InspectorLogAgent> m_logAgent; |
158 | 160 |
159 Member<InspectorSession> m_session; | 161 Member<InspectorSession> m_session; |
160 bool m_includeViewAgents; | 162 bool m_includeViewAgents; |
161 int m_layerTreeId; | 163 int m_layerTreeId; |
162 }; | 164 }; |
163 | 165 |
164 } // namespace blink | 166 } // namespace blink |
165 | 167 |
166 #endif | 168 #endif |
OLD | NEW |