| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 Member<InspectorTracingAgent> m_tracingAgent; | 152 Member<InspectorTracingAgent> m_tracingAgent; |
| 157 | 153 |
| 158 Member<InspectorSession> m_session; | 154 Member<InspectorSession> m_session; |
| 159 bool m_includeViewAgents; | 155 bool m_includeViewAgents; |
| 160 int m_layerTreeId; | 156 int m_layerTreeId; |
| 161 }; | 157 }; |
| 162 | 158 |
| 163 } // namespace blink | 159 } // namespace blink |
| 164 | 160 |
| 165 #endif | 161 #endif |
| OLD | NEW |