| Index: third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
|
| index 7fa5f49b4684e18a6a3a22aaca24ebf32137a9a9..03b8f703ae1215f193fe27eacc0680923eadd47a 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
|
| @@ -9,6 +9,8 @@
|
| #include "platform/inspector_protocol/String16.h"
|
| #include "platform/v8_inspector/protocol/Profiler.h"
|
|
|
| +#include <vector>
|
| +
|
| namespace v8 {
|
| class Isolate;
|
| }
|
| @@ -50,7 +52,7 @@ private:
|
| bool m_enabled;
|
| bool m_recordingCPUProfile;
|
| class ProfileDescriptor;
|
| - protocol::Vector<ProfileDescriptor> m_startedProfiles;
|
| + std::vector<ProfileDescriptor> m_startedProfiles;
|
| String16 m_frontendInitiatedProfileId;
|
| };
|
|
|
|
|