| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 The Chromium Authors. All rights reserved. | 2 * Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 #ifndef InspectorTracingAgent_h | 7 #ifndef InspectorTracingAgent_h |
| 8 #define InspectorTracingAgent_h | 8 #define InspectorTracingAgent_h |
| 9 | 9 |
| 10 #include "InspectorFrontend.h" | 10 #include "core/InspectorFrontend.h" |
| 11 #include "core/inspector/InspectorBaseAgent.h" | 11 #include "core/inspector/InspectorBaseAgent.h" |
| 12 #include "wtf/PassOwnPtr.h" | 12 #include "wtf/PassOwnPtr.h" |
| 13 #include "wtf/text/WTFString.h" | 13 #include "wtf/text/WTFString.h" |
| 14 | 14 |
| 15 namespace WebCore { | 15 namespace WebCore { |
| 16 | 16 |
| 17 class InspectorClient; | 17 class InspectorClient; |
| 18 | 18 |
| 19 class InspectorTracingAgent FINAL | 19 class InspectorTracingAgent FINAL |
| 20 : public InspectorBaseAgent<InspectorTracingAgent> | 20 : public InspectorBaseAgent<InspectorTracingAgent> |
| (...skipping 20 matching lines...) Expand all Loading... |
| 41 void emitMetadataEvents(); | 41 void emitMetadataEvents(); |
| 42 String sessionId(); | 42 String sessionId(); |
| 43 | 43 |
| 44 int m_layerTreeId; | 44 int m_layerTreeId; |
| 45 InspectorClient* m_client; | 45 InspectorClient* m_client; |
| 46 }; | 46 }; |
| 47 | 47 |
| 48 } | 48 } |
| 49 | 49 |
| 50 #endif // InspectorTracingAgent_h | 50 #endif // InspectorTracingAgent_h |
| OLD | NEW |