Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(392)

Side by Side Diff: third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h

Issue 1758313002: DevTools: introduce collections shim to be backed by non-wtf in v8_inspector. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: for landing Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698