Index: third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py |
diff --git a/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py b/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py |
index aa4a56fbb83e381412b415be23a1a629deeb8186..fbfdc6c0c77dd4bbee5fbdb6a28ffebdba0c2605 100755 |
--- a/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py |
+++ b/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py |
@@ -97,10 +97,11 @@ namespace blink { |
${forward_list} |
-class CORE_EXPORT InstrumentingAgents : public GarbageCollected<InstrumentingAgents> { |
+class CORE_EXPORT InstrumentingAgents : public GarbageCollectedFinalized<InstrumentingAgents> { |
sof
2016/05/23 06:20:53
Why this change? This object doesn't need to run a
dgozman
2016/05/23 15:47:02
I was fixing a crash, and thought that maybe we do
sof
2016/05/23 18:00:30
Thanks for explaining; the HeapHashMap backing sto
|
WTF_MAKE_NONCOPYABLE(InstrumentingAgents); |
public: |
InstrumentingAgents(); |
+ ~InstrumentingAgents() { } |
DECLARE_TRACE(); |
${accessor_list} |