| Index: Source/modules/filesystem/InspectorFileSystemAgent.h
|
| diff --git a/Source/modules/filesystem/InspectorFileSystemAgent.h b/Source/modules/filesystem/InspectorFileSystemAgent.h
|
| index 1b90cc8f6934ea8291fce740092fa98887197c83..1fa430be5804fd75a3609f95c827821858134a9a 100644
|
| --- a/Source/modules/filesystem/InspectorFileSystemAgent.h
|
| +++ b/Source/modules/filesystem/InspectorFileSystemAgent.h
|
| @@ -46,16 +46,16 @@ class SecurityOrigin;
|
| class MODULES_EXPORT InspectorFileSystemAgent final : public InspectorBaseAgent<InspectorFileSystemAgent, InspectorFrontend::FileSystem>, public InspectorBackendDispatcher::FileSystemCommandHandler {
|
| public:
|
| static PassOwnPtrWillBeRawPtr<InspectorFileSystemAgent> create(Page*);
|
| - virtual ~InspectorFileSystemAgent();
|
| + ~InspectorFileSystemAgent() override;
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| - virtual void enable(ErrorString*) override;
|
| + void enable(ErrorString*) override;
|
|
|
| - virtual void requestFileSystemRoot(ErrorString*, const String& origin, const String& typeString, PassRefPtrWillBeRawPtr<RequestFileSystemRootCallback>) override;
|
| - virtual void requestDirectoryContent(ErrorString*, const String& url, PassRefPtrWillBeRawPtr<RequestDirectoryContentCallback>) override;
|
| - virtual void requestMetadata(ErrorString*, const String& url, PassRefPtrWillBeRawPtr<RequestMetadataCallback>) override;
|
| - virtual void requestFileContent(ErrorString*, const String& url, bool readAsText, const int* start, const int* end, const String* charset, PassRefPtrWillBeRawPtr<RequestFileContentCallback>) override;
|
| - virtual void deleteEntry(ErrorString*, const String& url, PassRefPtrWillBeRawPtr<DeleteEntryCallback>) override;
|
| + void requestFileSystemRoot(ErrorString*, const String& origin, const String& typeString, PassRefPtrWillBeRawPtr<RequestFileSystemRootCallback>) override;
|
| + void requestDirectoryContent(ErrorString*, const String& url, PassRefPtrWillBeRawPtr<RequestDirectoryContentCallback>) override;
|
| + void requestMetadata(ErrorString*, const String& url, PassRefPtrWillBeRawPtr<RequestMetadataCallback>) override;
|
| + void requestFileContent(ErrorString*, const String& url, bool readAsText, const int* start, const int* end, const String* charset, PassRefPtrWillBeRawPtr<RequestFileContentCallback>) override;
|
| + void deleteEntry(ErrorString*, const String& url, PassRefPtrWillBeRawPtr<DeleteEntryCallback>) override;
|
|
|
| void disable(ErrorString*) override;
|
| void restore() override;
|
|
|