diff options
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/glue/webfileutilities_impl.cc | 4 | ||||
-rw-r--r-- | webkit/glue/webfileutilities_impl.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/webkit/glue/webfileutilities_impl.cc b/webkit/glue/webfileutilities_impl.cc index a77184d..6cea225 100644 --- a/webkit/glue/webfileutilities_impl.cc +++ b/webkit/glue/webfileutilities_impl.cc @@ -24,6 +24,10 @@ WebFileUtilitiesImpl::WebFileUtilitiesImpl() WebFileUtilitiesImpl::~WebFileUtilitiesImpl() { } +void WebFileUtilitiesImpl::revealFolderInOS(const WebString& path) { + NOTREACHED(); +} + bool WebFileUtilitiesImpl::fileExists(const WebString& path) { FilePath::StringType file_path = WebStringToFilePathString(path); return file_util::PathExists(FilePath(file_path)); diff --git a/webkit/glue/webfileutilities_impl.h b/webkit/glue/webfileutilities_impl.h index 5867396..c1ef986 100644 --- a/webkit/glue/webfileutilities_impl.h +++ b/webkit/glue/webfileutilities_impl.h @@ -16,6 +16,7 @@ class WebFileUtilitiesImpl : public WebKit::WebFileUtilities { virtual ~WebFileUtilitiesImpl(); // WebFileUtilities methods: + virtual void revealFolderInOS(const WebKit::WebString& path); virtual bool fileExists(const WebKit::WebString& path); virtual bool deleteFile(const WebKit::WebString& path); virtual bool deleteEmptyDirectory(const WebKit::WebString& path); |