summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/web/LocalFileSystemClient.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/web/LocalFileSystemClient.h')
-rw-r--r--chromium/third_party/WebKit/Source/web/LocalFileSystemClient.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/chromium/third_party/WebKit/Source/web/LocalFileSystemClient.h b/chromium/third_party/WebKit/Source/web/LocalFileSystemClient.h
index d72ef9b1d51..bc255f0e6fb 100644
--- a/chromium/third_party/WebKit/Source/web/LocalFileSystemClient.h
+++ b/chromium/third_party/WebKit/Source/web/LocalFileSystemClient.h
@@ -36,13 +36,14 @@
namespace blink {
-class LocalFileSystemClient : public WebCore::FileSystemClient {
+class LocalFileSystemClient FINAL : public WebCore::FileSystemClient {
public:
static PassOwnPtr<FileSystemClient> create();
virtual ~LocalFileSystemClient();
- virtual bool allowFileSystem(WebCore::ExecutionContext*) OVERRIDE;
+ virtual bool requestFileSystemAccessSync(WebCore::ExecutionContext*) OVERRIDE;
+ virtual void requestFileSystemAccessAsync(WebCore::ExecutionContext*, PassOwnPtr<WebCore::PermissionCallbacks>) OVERRIDE;
private:
LocalFileSystemClient();