diff options
author | jianli@chromium.org <jianli@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-28 22:30:53 +0000 |
---|---|---|
committer | jianli@chromium.org <jianli@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-28 22:30:53 +0000 |
commit | ca3f22c070a6b61a3ec40ace07244890bbdd6ebe (patch) | |
tree | f2106dbb965ae0493238b25770e4e9503a3fae60 /webkit/glue/webkitclient_impl.h | |
parent | 5ad11a036d3686318997cbcdd1340275ca8c9709 (diff) | |
download | chromium_src-ca3f22c070a6b61a3ec40ace07244890bbdd6ebe.zip chromium_src-ca3f22c070a6b61a3ec40ace07244890bbdd6ebe.tar.gz chromium_src-ca3f22c070a6b61a3ec40ace07244890bbdd6ebe.tar.bz2 |
Chromium side implementations of some FileSystem methods. This is needed to complete the WebKit bug fix https://bugs.webkit.org/show_bug.cgi?id=29109.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/209072
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27420 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webkitclient_impl.h')
-rw-r--r-- | webkit/glue/webkitclient_impl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/webkit/glue/webkitclient_impl.h b/webkit/glue/webkitclient_impl.h index 1c4a177..ba25918 100644 --- a/webkit/glue/webkitclient_impl.h +++ b/webkit/glue/webkitclient_impl.h @@ -58,6 +58,9 @@ class WebKitClientImpl : public WebKit::WebKitClient { virtual WebKit::WebString pathByAppendingComponent( const WebKit::WebString& path, const WebKit::WebString& component); virtual bool makeAllDirectories(const WebKit::WebString& path); + virtual WebKit::WebString getAbsolutePath(const WebKit::WebString& path); + virtual bool isDirectory(const WebKit::WebString& path); + virtual WebKit::WebURL filePathToURL(const WebKit::WebString& path); virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( WebKit::WebApplicationCacheHostClient*); |