Home | History | Annotate | Download | only in public

Lines Matching refs:WebFileSystemCallbacks

39 class WebFileSystemCallbacks;
55 // WebFileSystemCallbacks::didSucceed() must be called when the operation is completed successfully.
56 // WebFileSystemCallbacks::didFail() must be called otherwise.
57 virtual void move(const WebString& srcPath, const WebString& destPath, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
60 // WebFileSystemCallbacks::didSucceed() must be called when the operation is completed successfully.
61 // WebFileSystemCallbacks::didFail() must be called otherwise.
62 virtual void copy(const WebString& srcPath, const WebString& destPath, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
66 // WebFileSystemCallbacks::didSucceed() must be called when the operation is completed successfully.
67 // WebFileSystemCallbacks::didFail() must be called otherwise.
68 virtual void remove(const WebString& path, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
71 // WebFileSystemCallbacks::didSucceed() must be called when the operation is completed successfully.
72 // WebFileSystemCallbacks::didFail() must be called otherwise.
73 virtual void removeRecursively(const WebString& path, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
76 // WebFileSystemCallbacks::didReadMetadata() must be called with a valid metadata when the retrieval is completed successfully.
77 // WebFileSystemCallbacks::didFail() must be called otherwise.
78 virtual void readMetadata(const WebString& path, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
86 // WebFileSystemCallbacks::didSucceed() must be called when the operation is completed successfully.
87 // WebFileSystemCallbacks::didFail() must be called otherwise.
88 virtual void createFile(const WebString& path, bool exclusive, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
95 // WebFileSystemCallbacks::didSucceed() must be called when
97 // WebFileSystemCallbacks::didFail() must be called otherwise.
98 virtual void createDirectory(const WebString& path, bool exclusive, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
101 // WebFileSystemCallbacks::didSucceed() must be called when the operation is completed successfully.
102 // WebFileSystemCallbacks::didFail() must be called otherwise.
103 virtual void fileExists(const WebString& path, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
106 // WebFileSystemCallbacks::didSucceed() must be called when the operation is completed successfully.
107 // WebFileSystemCallbacks::didFail() must be called otherwise.
108 virtual void directoryExists(const WebString& path, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
111 // WebFileSystemCallbacks::didReadDirectory() must be called when the operation is completed successfully.
112 // WebFileSystemCallbacks::didFail() must be called otherwise.
113 virtual void readDirectory(const WebString& path, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }