| Index: third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h b/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h
|
| index b03d9a2812708329b6b26c9b01938232515d5615..56685ebd38bad95d7b8dd44624c32287be376dbe 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h
|
| @@ -43,7 +43,7 @@ class InspectedFrames;
|
|
|
| class MODULES_EXPORT InspectorIndexedDBAgent final : public InspectorBaseAgent<InspectorIndexedDBAgent, protocol::Frontend::IndexedDB>, public protocol::Backend::IndexedDB {
|
| public:
|
| - static PassOwnPtrWillBeRawPtr<InspectorIndexedDBAgent> create(InspectedFrames*);
|
| + static RawPtr<InspectorIndexedDBAgent> create(InspectedFrames*);
|
|
|
| ~InspectorIndexedDBAgent() override;
|
| DECLARE_VIRTUAL_TRACE();
|
| @@ -61,7 +61,7 @@ public:
|
| private:
|
| explicit InspectorIndexedDBAgent(InspectedFrames*);
|
|
|
| - RawPtrWillBeMember<InspectedFrames> m_inspectedFrames;
|
| + Member<InspectedFrames> m_inspectedFrames;
|
| };
|
|
|
| } // namespace blink
|
|
|