#ifndef InspectorFrontendHostFileSystem_h
#define InspectorFrontendHostFileSystem_h
#include "heap/Handle.h"
#include "wtf/PassRefPtr.h"
#include "wtf/text/WTFString.h"
namespace WebCore {
class DOMFileSystem;
class InspectorFrontendHost;
class InspectorFrontendHostFileSystem {
public:
static PassRefPtrWillBeRawPtr<DOMFileSystem> isolatedFileSystem(InspectorFrontendHost&, const String& fileSystemName, const String& rootURL);
static void upgradeDraggedFileSystemPermissions(InspectorFrontendHost&, DOMFileSystem*);
private:
InspectorFrontendHostFileSystem();
~InspectorFrontendHostFileSystem();
};
}
#endif