diff options
author | ericu@google.com <ericu@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-02 01:30:08 +0000 |
---|---|---|
committer | ericu@google.com <ericu@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-02 01:30:08 +0000 |
commit | 2b437e23748d7444f1698ae9242fabf0bc0730a7 (patch) | |
tree | 40a740c3f0a8032e30299d8724e54d9a269291af /chrome/worker/worker_webkitclient_impl.h | |
parent | e0976a77dcc9be00485086b5b0e112fe6d159ff2 (diff) | |
download | chromium_src-2b437e23748d7444f1698ae9242fabf0bc0730a7.zip chromium_src-2b437e23748d7444f1698ae9242fabf0bc0730a7.tar.gz chromium_src-2b437e23748d7444f1698ae9242fabf0bc0730a7.tar.bz2 |
Changes to the Browser to support Database access from Workers.
This changelist should have no visible effect until the V8
bindings for the Database get added to the Worker context in WebKit.
BUG=none
TEST=webkit layout tests
Review URL: http://codereview.chromium.org/1387001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43427 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/worker/worker_webkitclient_impl.h')
-rw-r--r-- | chrome/worker/worker_webkitclient_impl.h | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/chrome/worker/worker_webkitclient_impl.h b/chrome/worker/worker_webkitclient_impl.h index 92299d3..a48eef3 100644 --- a/chrome/worker/worker_webkitclient_impl.h +++ b/chrome/worker/worker_webkitclient_impl.h @@ -1,6 +1,6 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this -// source code is governed by a BSD-style license that can be found in the -// LICENSE file. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. #ifndef CHROME_WORKER_WORKER_WEBKITCLIENT_IMPL_H_ #define CHROME_WORKER_WORKER_WEBKITCLIENT_IMPL_H_ @@ -37,6 +37,16 @@ class WorkerWebKitClientImpl : public webkit_glue::WebKitClientImpl, const WebKit::WebURL& url, bool is_local_storage); virtual WebKit::WebSharedWorkerRepository* sharedWorkerRepository(); + virtual WebKit::WebKitClient::FileHandle databaseOpenFile( + const WebKit::WebString& vfs_file_name, int desired_flags, + WebKit::WebKitClient::FileHandle* dir_handle); + virtual int databaseDeleteFile(const WebKit::WebString& vfs_file_name, + bool sync_dir); + virtual long databaseGetFileAttributes( + const WebKit::WebString& vfs_file_name); + virtual long long databaseGetFileSize( + const WebKit::WebString& vfs_file_name); + // WebMimeRegistry methods: virtual WebKit::WebMimeRegistry::SupportsType supportsMIMEType( const WebKit::WebString&); |