summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/workers/WorkerContext.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/workers/WorkerContext.h')
-rw-r--r--Source/WebCore/workers/WorkerContext.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/WebCore/workers/WorkerContext.h b/Source/WebCore/workers/WorkerContext.h
index 2e802f2..d2ccb11 100644
--- a/Source/WebCore/workers/WorkerContext.h
+++ b/Source/WebCore/workers/WorkerContext.h
@@ -50,6 +50,8 @@ namespace WebCore {
class Database;
class DatabaseCallback;
class DatabaseSync;
+ class EntryCallback;
+ class EntrySync;
class ErrorCallback;
class FileSystemCallback;
class NotificationCenter;
@@ -129,8 +131,10 @@ namespace WebCore {
TEMPORARY,
PERSISTENT,
};
- void requestFileSystem(int type, long long size, PassRefPtr<FileSystemCallback>, PassRefPtr<ErrorCallback>);
+ void requestFileSystem(int type, long long size, PassRefPtr<FileSystemCallback> successCallback, PassRefPtr<ErrorCallback>);
PassRefPtr<DOMFileSystemSync> requestFileSystemSync(int type, long long size, ExceptionCode&);
+ void resolveLocalFileSystemURL(const String& url, PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback>);
+ PassRefPtr<EntrySync> resolveLocalFileSystemSyncURL(const String& url, ExceptionCode&);
#endif
// These methods are used for GC marking. See JSWorkerContext::markChildren(MarkStack&) in