Index: Source/core/inspector/InspectorInstrumentation.h |
diff --git a/Source/core/inspector/InspectorInstrumentation.h b/Source/core/inspector/InspectorInstrumentation.h |
index 50657448dc84d952ad8490297ab721bc56a6ba42..1a00a6eec29dde72485cca076b41d7439c3ccfbf 100644 |
--- a/Source/core/inspector/InspectorInstrumentation.h |
+++ b/Source/core/inspector/InspectorInstrumentation.h |
@@ -64,6 +64,7 @@ class WorkerInspectorProxy; |
#define FAST_RETURN_IF_NO_FRONTENDS(value) if (!hasFrontends()) return value; |
class InspectorInstrumentationCookie { |
+ STACK_ALLOCATED(); |
public: |
InspectorInstrumentationCookie(); |
InspectorInstrumentationCookie(InstrumentingAgents*, int); |
@@ -76,7 +77,7 @@ public: |
bool hasMatchingTimelineAgentId(int id) const { return m_timelineAgentId == id; } |
private: |
- RefPtrWillBePersistent<InstrumentingAgents> m_instrumentingAgents; |
+ RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents; |
int m_timelineAgentId; |
}; |