summaryrefslogtreecommitdiffstats
path: root/WebKit/chromium/public/WebCommonWorkerClient.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebKit/chromium/public/WebCommonWorkerClient.h')
-rw-r--r--WebKit/chromium/public/WebCommonWorkerClient.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/WebKit/chromium/public/WebCommonWorkerClient.h b/WebKit/chromium/public/WebCommonWorkerClient.h
index cea6471..39d8aa9 100644
--- a/WebKit/chromium/public/WebCommonWorkerClient.h
+++ b/WebKit/chromium/public/WebCommonWorkerClient.h
@@ -31,6 +31,9 @@
#ifndef WebCommonWorkerClient_h
#define WebCommonWorkerClient_h
+#include "WebCommon.h"
+#include "WebFileSystem.h"
+
namespace WebKit {
class WebApplicationCacheHost;
@@ -83,6 +86,12 @@ public:
// Called on the main webkit thread before opening a web database.
virtual bool allowDatabase(WebFrame*, const WebString& name, const WebString& displayName, unsigned long estimatedSize) = 0;
+ // Called on the main webkit thread before opening a file system.
+ virtual void openFileSystem(WebFileSystem::Type, long long size, WebFileSystemCallbacks*)
+ {
+ WEBKIT_ASSERT_NOT_REACHED();
+ }
+
protected:
~WebCommonWorkerClient() { }
};