| Index: third_party/WebKit/Source/modules/filesystem/InspectorFileSystemAgent.h
|
| diff --git a/third_party/WebKit/Source/modules/filesystem/InspectorFileSystemAgent.h b/third_party/WebKit/Source/modules/filesystem/InspectorFileSystemAgent.h
|
| index 15eddb992d9aab24f468d55730962f3d54026f6c..e41f7e704e53f2cf92a0cdbce8af1f7f62c05681 100644
|
| --- a/third_party/WebKit/Source/modules/filesystem/InspectorFileSystemAgent.h
|
| +++ b/third_party/WebKit/Source/modules/filesystem/InspectorFileSystemAgent.h
|
| @@ -45,7 +45,7 @@ class SecurityOrigin;
|
|
|
| class MODULES_EXPORT InspectorFileSystemAgent final : public InspectorBaseAgent<InspectorFileSystemAgent, InspectorFrontend::FileSystem>, public InspectorBackendDispatcher::FileSystemCommandHandler {
|
| public:
|
| - static PassOwnPtrWillBeRawPtr<InspectorFileSystemAgent> create(InspectedFrames*);
|
| + static RawPtr<InspectorFileSystemAgent> create(InspectedFrames*);
|
| ~InspectorFileSystemAgent() override;
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| @@ -65,7 +65,7 @@ private:
|
| bool assertEnabled(ErrorString*);
|
| ExecutionContext* assertExecutionContextForOrigin(ErrorString*, SecurityOrigin*);
|
|
|
| - RawPtrWillBeMember<InspectedFrames> m_inspectedFrames;
|
| + Member<InspectedFrames> m_inspectedFrames;
|
| bool m_enabled;
|
| };
|
|
|
|
|