Home | History | Annotate | Download | only in inspector

Lines Matching defs:InspectorFileSystemAgent

32 #include "core/inspector/InspectorFileSystemAgent.h"
604 PassOwnPtr<InspectorFileSystemAgent> InspectorFileSystemAgent::create(InstrumentingAgents* instrumentingAgents, InspectorPageAgent* pageAgent, InspectorCompositeState* state)
606 return adoptPtr(new InspectorFileSystemAgent(instrumentingAgents, pageAgent, state));
609 InspectorFileSystemAgent::~InspectorFileSystemAgent()
613 void InspectorFileSystemAgent::enable(ErrorString*)
621 void InspectorFileSystemAgent::disable(ErrorString*)
629 void InspectorFileSystemAgent::requestFileSystemRoot(ErrorString* error, const String& origin, const String& type, PassRefPtr<RequestFileSystemRootCallback> requestCallback)
641 void InspectorFileSystemAgent::requestDirectoryContent(ErrorString* error, const String& url, PassRefPtr<RequestDirectoryContentCallback> requestCallback)
653 void InspectorFileSystemAgent::requestMetadata(ErrorString* error, const String& url, PassRefPtr<RequestMetadataCallback> requestCallback)
665 void InspectorFileSystemAgent::requestFileContent(ErrorString* error, const String& url, bool readAsText, const int* start, const int* end, const String* charset, PassRefPtr<RequestFileContentCallback> requestCallback)
679 void InspectorFileSystemAgent::deleteEntry(ErrorString* error, const String& urlString, PassRefPtr<DeleteEntryCallback> requestCallback)
693 void InspectorFileSystemAgent::clearFrontend()
699 void InspectorFileSystemAgent::restore()
704 InspectorFileSystemAgent::InspectorFileSystemAgent(InstrumentingAgents* instrumentingAgents, InspectorPageAgent* pageAgent, InspectorCompositeState* state)
705 : InspectorBaseAgent<InspectorFileSystemAgent>("FileSystem", instrumentingAgents, state)
714 bool InspectorFileSystemAgent::assertEnabled(ErrorString* error)
723 ScriptExecutionContext* InspectorFileSystemAgent::assertScriptExecutionContextForOrigin(ErrorString* error, SecurityOrigin* origin)