| 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/Frontend.h" | 9 #include "platform/inspector_protocol/Frontend.h" |
| 10 #include "platform/v8_inspector/public/V8ProfilerAgent.h" | 10 #include "platform/v8_inspector/public/V8ProfilerAgent.h" |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 | 49 |
| 50 bool isRecording() const; | 50 bool isRecording() const; |
| 51 | 51 |
| 52 V8DebuggerImpl* m_debugger; | 52 V8DebuggerImpl* m_debugger; |
| 53 v8::Isolate* m_isolate; | 53 v8::Isolate* m_isolate; |
| 54 protocol::DictionaryValue* m_state; | 54 protocol::DictionaryValue* m_state; |
| 55 protocol::Frontend::Profiler* m_frontend; | 55 protocol::Frontend::Profiler* m_frontend; |
| 56 bool m_enabled; | 56 bool m_enabled; |
| 57 bool m_recordingCPUProfile; | 57 bool m_recordingCPUProfile; |
| 58 class ProfileDescriptor; | 58 class ProfileDescriptor; |
| 59 Vector<ProfileDescriptor> m_startedProfiles; | 59 protocol::Vector<ProfileDescriptor> m_startedProfiles; |
| 60 String m_frontendInitiatedProfileId; | 60 String m_frontendInitiatedProfileId; |
| 61 }; | 61 }; |
| 62 | 62 |
| 63 } // namespace blink | 63 } // namespace blink |
| 64 | 64 |
| 65 | 65 |
| 66 #endif // !defined(V8ProfilerAgentImpl_h) | 66 #endif // !defined(V8ProfilerAgentImpl_h) |
| OLD | NEW |