| Index: third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h
|
| diff --git a/third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h b/third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h
|
| index b22321b4622738b341a7b9ce456e388008aacdcb..a3b0c3774492129ba529bfcf23d11624197b3e64 100644
|
| --- a/third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h
|
| +++ b/third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h
|
| @@ -48,9 +48,9 @@ typedef String ErrorString;
|
|
|
| class MODULES_EXPORT InspectorDOMStorageAgent final : public InspectorBaseAgent<InspectorDOMStorageAgent, InspectorFrontend::DOMStorage>, public InspectorBackendDispatcher::DOMStorageCommandHandler {
|
| public:
|
| - static PassOwnPtrWillBeRawPtr<InspectorDOMStorageAgent> create(Page* page)
|
| + static RawPtr<InspectorDOMStorageAgent> create(Page* page)
|
| {
|
| - return adoptPtrWillBeNoop(new InspectorDOMStorageAgent(page));
|
| + return (new InspectorDOMStorageAgent(page));
|
| }
|
|
|
| ~InspectorDOMStorageAgent() override;
|
| @@ -74,7 +74,7 @@ private:
|
| StorageArea* findStorageArea(ErrorString*, const RefPtr<JSONObject>&, LocalFrame*&);
|
| PassRefPtr<TypeBuilder::DOMStorage::StorageId> storageId(SecurityOrigin*, bool isLocalStorage);
|
|
|
| - RawPtrWillBeMember<Page> m_page;
|
| + Member<Page> m_page;
|
| bool m_isEnabled;
|
| };
|
|
|
|
|