| Index: third_party/WebKit/Source/core/inspector/PageDebuggerAgent.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/PageDebuggerAgent.h b/third_party/WebKit/Source/core/inspector/PageDebuggerAgent.h
|
| index 080a5fd7384ad940ea8f0ec72a851f4052ab5251..a979a127ef71a5bbe404bd9dd0bb406c5f5ee378 100644
|
| --- a/third_party/WebKit/Source/core/inspector/PageDebuggerAgent.h
|
| +++ b/third_party/WebKit/Source/core/inspector/PageDebuggerAgent.h
|
| @@ -47,9 +47,8 @@ class MainThreadDebugger;
|
| class CORE_EXPORT PageDebuggerAgent final
|
| : public InspectorDebuggerAgent {
|
| WTF_MAKE_NONCOPYABLE(PageDebuggerAgent);
|
| - USING_FAST_MALLOC_WILL_BE_REMOVED(PageDebuggerAgent);
|
| public:
|
| - static PassOwnPtrWillBeRawPtr<PageDebuggerAgent> create(MainThreadDebugger*, InspectedFrames*, InjectedScriptManager*);
|
| + static RawPtr<PageDebuggerAgent> create(MainThreadDebugger*, InspectedFrames*, InjectedScriptManager*);
|
| ~PageDebuggerAgent() override;
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| @@ -68,7 +67,7 @@ private:
|
| // V8DebuggerAgent::Client implemntation.
|
| bool canExecuteScripts() const;
|
|
|
| - RawPtrWillBeMember<InspectedFrames> m_inspectedFrames;
|
| + Member<InspectedFrames> m_inspectedFrames;
|
| HashMap<String, String> m_compiledScriptURLs;
|
| };
|
|
|
|
|