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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 class PlatformMouseEvent; | 57 class PlatformMouseEvent; |
58 class PlatformTouchEvent; | 58 class PlatformTouchEvent; |
59 class WebDevToolsAgentClient; | 59 class WebDevToolsAgentClient; |
60 class WebFrameWidgetImpl; | 60 class WebFrameWidgetImpl; |
61 class WebInputEvent; | 61 class WebInputEvent; |
62 class WebLayerTreeView; | 62 class WebLayerTreeView; |
63 class WebLocalFrameImpl; | 63 class WebLocalFrameImpl; |
64 class WebString; | 64 class WebString; |
65 class WebViewImpl; | 65 class WebViewImpl; |
66 | 66 |
67 namespace protocol { | |
68 class Value; | |
69 } | |
70 | |
71 class WebDevToolsAgentImpl final | 67 class WebDevToolsAgentImpl final |
72 : public GarbageCollectedFinalized<WebDevToolsAgentImpl> | 68 : public GarbageCollectedFinalized<WebDevToolsAgentImpl> |
73 , public WebDevToolsAgent | 69 , public WebDevToolsAgent |
74 , public InspectorEmulationAgent::Client | 70 , public InspectorEmulationAgent::Client |
75 , public InspectorTracingAgent::Client | 71 , public InspectorTracingAgent::Client |
76 , public InspectorPageAgent::Client | 72 , public InspectorPageAgent::Client |
77 , public InspectorSession::Client | 73 , public InspectorSession::Client |
78 , private WebThread::TaskObserver { | 74 , private WebThread::TaskObserver { |
79 public: | 75 public: |
80 static WebDevToolsAgentImpl* create(WebLocalFrameImpl*, WebDevToolsAgentClie
nt*); | 76 static WebDevToolsAgentImpl* create(WebLocalFrameImpl*, WebDevToolsAgentClie
nt*); |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 Member<InspectorTracingAgent> m_tracingAgent; | 149 Member<InspectorTracingAgent> m_tracingAgent; |
154 | 150 |
155 Member<InspectorSession> m_session; | 151 Member<InspectorSession> m_session; |
156 bool m_includeViewAgents; | 152 bool m_includeViewAgents; |
157 int m_layerTreeId; | 153 int m_layerTreeId; |
158 }; | 154 }; |
159 | 155 |
160 } // namespace blink | 156 } // namespace blink |
161 | 157 |
162 #endif | 158 #endif |
OLD | NEW |