| 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 efcdb6d1c2db1b182a0b49439199bbedaef12ce5..b30b042a7f5da271b2b1e7caa90fdb98426ea040 100755
|
| --- a/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py
|
| +++ b/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py
|
| @@ -118,13 +118,12 @@ namespace blink {
|
|
|
| ${forward_list}
|
|
|
| -class CORE_EXPORT InstrumentingAgents : public RefCountedWillBeGarbageCollectedFinalized<InstrumentingAgents> {
|
| +class CORE_EXPORT InstrumentingAgents : public GarbageCollectedFinalized<InstrumentingAgents> {
|
| WTF_MAKE_NONCOPYABLE(InstrumentingAgents);
|
| - USING_FAST_MALLOC_WILL_BE_REMOVED(InstrumentingAgents);
|
| public:
|
| - static PassRefPtrWillBeRawPtr<InstrumentingAgents> create()
|
| + static RawPtr<InstrumentingAgents> create()
|
| {
|
| - return adoptRefWillBeNoop(new InstrumentingAgents());
|
| + return new InstrumentingAgents();
|
| }
|
| ~InstrumentingAgents() { }
|
| DECLARE_TRACE();
|
| @@ -465,7 +464,7 @@ def generate_instrumenting_agents(used_agents):
|
| class_name=class_name,
|
| getter_name=getter_name,
|
| member_name=member_name))
|
| - member_list.append(" RawPtrWillBeMember<%s> %s;" % (class_name, member_name))
|
| + member_list.append(" Member<%s> %s;" % (class_name, member_name))
|
| init_list.append("%s(nullptr)" % member_name)
|
| trace_list.append("visitor->trace(%s);" % member_name)
|
| reset_list.append("%s = nullptr;" % member_name)
|
|
|