| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 #include <memory> | 44 #include <memory> |
| 45 | 45 |
| 46 namespace blink { | 46 namespace blink { |
| 47 | 47 |
| 48 class GraphicsLayer; | 48 class GraphicsLayer; |
| 49 class InspectedFrames; | 49 class InspectedFrames; |
| 50 class InspectorOverlay; | 50 class InspectorOverlay; |
| 51 class InspectorResourceContainer; | 51 class InspectorResourceContainer; |
| 52 class InspectorResourceContentLoader; | 52 class InspectorResourceContentLoader; |
| 53 class LocalFrame; | 53 class LocalFrame; |
| 54 class Page; | |
| 55 class WebDevToolsAgentClient; | 54 class WebDevToolsAgentClient; |
| 56 class WebFrameWidgetImpl; | 55 class WebFrameWidgetImpl; |
| 57 class WebLayerTreeView; | 56 class WebLayerTreeView; |
| 58 class WebLocalFrameImpl; | 57 class WebLocalFrameImpl; |
| 59 class WebString; | 58 class WebString; |
| 60 class WebViewImpl; | 59 class WebViewImpl; |
| 61 | 60 |
| 62 class WebDevToolsAgentImpl final | 61 class WebDevToolsAgentImpl final |
| 63 : public GarbageCollectedFinalized<WebDevToolsAgentImpl>, | 62 : public GarbageCollectedFinalized<WebDevToolsAgentImpl>, |
| 64 public WebDevToolsAgent, | 63 public WebDevToolsAgent, |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 Member<InspectorTracingAgent> m_tracingAgent; | 162 Member<InspectorTracingAgent> m_tracingAgent; |
| 164 | 163 |
| 165 Member<InspectorSession> m_session; | 164 Member<InspectorSession> m_session; |
| 166 bool m_includeViewAgents; | 165 bool m_includeViewAgents; |
| 167 int m_layerTreeId; | 166 int m_layerTreeId; |
| 168 }; | 167 }; |
| 169 | 168 |
| 170 } // namespace blink | 169 } // namespace blink |
| 171 | 170 |
| 172 #endif | 171 #endif |
| OLD | NEW |