Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1204)

Unified Diff: content/renderer/renderer_webkitplatformsupport_impl.cc

Issue 10391185: Removing FileUtilities::revealOSInFolder which is not used anymore (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/file_utilities_messages.h ('k') | webkit/glue/webfileutilities_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/renderer_webkitplatformsupport_impl.cc
diff --git a/content/renderer/renderer_webkitplatformsupport_impl.cc b/content/renderer/renderer_webkitplatformsupport_impl.cc
index 9a8926b5e08ca8f5fafd333267f0661a9eb8e75e..f4b7d6e56a111d73beaa835dedf6ae4a09bf1cd1 100644
--- a/content/renderer/renderer_webkitplatformsupport_impl.cc
+++ b/content/renderer/renderer_webkitplatformsupport_impl.cc
@@ -112,7 +112,6 @@ class RendererWebKitPlatformSupportImpl::MimeRegistry
class RendererWebKitPlatformSupportImpl::FileUtilities
: public webkit_glue::WebFileUtilitiesImpl {
public:
- virtual void revealFolderInOS(const WebKit::WebString& path);
virtual bool getFileSize(const WebKit::WebString& path, long long& result);
virtual bool getFileModificationTime(const WebKit::WebString& path,
double& result);
@@ -419,15 +418,6 @@ bool RendererWebKitPlatformSupportImpl::FileUtilities::getFileSize(
return false;
}
-void RendererWebKitPlatformSupportImpl::FileUtilities::revealFolderInOS(
- const WebString& path) {
- FilePath file_path(webkit_glue::WebStringToFilePath(path));
- bool res = file_util::AbsolutePath(&file_path);
- DCHECK(res);
- RenderThreadImpl::current()->Send(
- new FileUtilitiesMsg_RevealFolderInOS(file_path));
-}
-
bool RendererWebKitPlatformSupportImpl::FileUtilities::getFileModificationTime(
const WebString& path,
double& result) {
« no previous file with comments | « content/common/file_utilities_messages.h ('k') | webkit/glue/webfileutilities_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698