summaryrefslogtreecommitdiffstats
path: root/webkit/fileapi
diff options
context:
space:
mode:
authorericu@google.com <ericu@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-24 01:14:57 +0000
committerericu@google.com <ericu@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-24 01:14:57 +0000
commit35beff56cf90ddd1ca213a20fb17b80b4faad696 (patch)
tree982be9940401b4284fc3ac2574496243995a3060 /webkit/fileapi
parent8f72b978c9bbb7c2f3f60f046ecaa664f8ab0226 (diff)
downloadchromium_src-35beff56cf90ddd1ca213a20fb17b80b4faad696.zip
chromium_src-35beff56cf90ddd1ca213a20fb17b80b4faad696.tar.gz
chromium_src-35beff56cf90ddd1ca213a20fb17b80b4faad696.tar.bz2
Revert 79230 - Fix the clang build.
BUG=none TEST=none TBR=cmp TBR=ericu@google.com Review URL: http://codereview.chromium.org/6733014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79231 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/fileapi')
-rw-r--r--webkit/fileapi/file_system_operation_context.h3
-rw-r--r--webkit/fileapi/sandbox_mount_point_provider.h6
2 files changed, 2 insertions, 7 deletions
diff --git a/webkit/fileapi/file_system_operation_context.h b/webkit/fileapi/file_system_operation_context.h
index 89ce8c1..d4c7f2f 100644
--- a/webkit/fileapi/file_system_operation_context.h
+++ b/webkit/fileapi/file_system_operation_context.h
@@ -20,9 +20,6 @@ class FileSystemOperationContext {
FileSystemContext* context,
FileSystemFileUtil* file_system_file_util);
- ~FileSystemOperationContext() {
- }
-
FileSystemContext* file_system_context() const {
return file_system_context_.get();
}
diff --git a/webkit/fileapi/sandbox_mount_point_provider.h b/webkit/fileapi/sandbox_mount_point_provider.h
index bb6d12a..d981cc8 100644
--- a/webkit/fileapi/sandbox_mount_point_provider.h
+++ b/webkit/fileapi/sandbox_mount_point_provider.h
@@ -26,8 +26,6 @@ class SandboxMountPointProvider : public FileSystemMountPointProvider {
FileSystemPathManager* path_manager,
scoped_refptr<base::MessageLoopProxy> file_message_loop,
const FilePath& profile_path);
- virtual ~SandboxMountPointProvider() {
- }
// Checks if mount point access is allowed from |origin_url|.
virtual bool IsAccessAllowed(const GURL& origin_url);
@@ -35,7 +33,7 @@ class SandboxMountPointProvider : public FileSystemMountPointProvider {
// Retrieves the root path for the given |origin_url| and |type|, and
// calls the given |callback| with the root path and name.
// If |create| is true this also creates the directory if it doesn't exist.
- virtual void GetFileSystemRootPath(
+ void GetFileSystemRootPath(
const GURL& origin_url,
FileSystemType type,
bool create,
@@ -43,7 +41,7 @@ class SandboxMountPointProvider : public FileSystemMountPointProvider {
// Like GetFileSystemRootPath, but synchronous, and can be called only while
// running on the file thread.
- virtual FilePath GetFileSystemRootPathOnFileThread(
+ FilePath GetFileSystemRootPathOnFileThread(
const GURL& origin_url,
FileSystemType type,
bool create);