diff options
author | kkanetkar@chromium.org <kkanetkar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-29 00:31:32 +0000 |
---|---|---|
committer | kkanetkar@chromium.org <kkanetkar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-29 00:31:32 +0000 |
commit | eca3e46dc5fb6ec07d70c1950dd074fc0bfc69c7 (patch) | |
tree | 72d7dbde2f98c4cf74c56c23ab377b0c6bcfb871 /webkit | |
parent | a728af722e69afc8122f70d4decd96ceeba8d027 (diff) | |
download | chromium_src-eca3e46dc5fb6ec07d70c1950dd074fc0bfc69c7.zip chromium_src-eca3e46dc5fb6ec07d70c1950dd074fc0bfc69c7.tar.gz chromium_src-eca3e46dc5fb6ec07d70c1950dd074fc0bfc69c7.tar.bz2 |
Implements filesystem integration with devtools. Implements a functionality to "Show in folder" that launches native file browser.
BUG=32277
TEST=None
Review URL: http://codereview.chromium.org/3593005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64344 0039d316-1c4b-4281-b951-d872f2087c98
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); |