| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8ProfilerAgentImpl_h | 5 #ifndef V8ProfilerAgentImpl_h |
| 6 #define V8ProfilerAgentImpl_h | 6 #define V8ProfilerAgentImpl_h |
| 7 | 7 |
| 8 #include "platform/inspector_protocol/Allocator.h" | 8 #include "platform/inspector_protocol/Allocator.h" |
| 9 #include "platform/inspector_protocol/String16.h" | 9 #include "platform/inspector_protocol/String16.h" |
| 10 #include "platform/inspector_protocol/TypeBuilder.h" | 10 #include "platform/v8_inspector/protocol/Profiler.h" |
| 11 | 11 |
| 12 namespace v8 { | 12 namespace v8 { |
| 13 class Isolate; | 13 class Isolate; |
| 14 } | 14 } |
| 15 | 15 |
| 16 namespace blink { | 16 namespace blink { |
| 17 | 17 |
| 18 class V8InspectorSessionImpl; | 18 class V8InspectorSessionImpl; |
| 19 | 19 |
| 20 class V8ProfilerAgentImpl : public protocol::Profiler::Backend { | 20 class V8ProfilerAgentImpl : public protocol::Profiler::Backend { |
| (...skipping 30 matching lines...) Expand all Loading... |
| 51 bool m_recordingCPUProfile; | 51 bool m_recordingCPUProfile; |
| 52 class ProfileDescriptor; | 52 class ProfileDescriptor; |
| 53 protocol::Vector<ProfileDescriptor> m_startedProfiles; | 53 protocol::Vector<ProfileDescriptor> m_startedProfiles; |
| 54 String16 m_frontendInitiatedProfileId; | 54 String16 m_frontendInitiatedProfileId; |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 } // namespace blink | 57 } // namespace blink |
| 58 | 58 |
| 59 | 59 |
| 60 #endif // !defined(V8ProfilerAgentImpl_h) | 60 #endif // !defined(V8ProfilerAgentImpl_h) |
| OLD | NEW |