| Index: content/common/fileapi/webfilesystem_callback_adapters.h
|
| diff --git a/content/common/fileapi/webfilesystem_callback_adapters.h b/content/common/fileapi/webfilesystem_callback_adapters.h
|
| deleted file mode 100644
|
| index 5f855ff444bf8b54eef2045ec6af92d87fcfa79d..0000000000000000000000000000000000000000
|
| --- a/content/common/fileapi/webfilesystem_callback_adapters.h
|
| +++ /dev/null
|
| @@ -1,48 +0,0 @@
|
| -// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#ifndef CONTENT_COMMON_FILEAPI_WEBFILESYSTEM_CALLBACK_ADAPTERS_H_
|
| -#define CONTENT_COMMON_FILEAPI_WEBFILESYSTEM_CALLBACK_ADAPTERS_H_
|
| -
|
| -#include "base/basictypes.h"
|
| -#include "base/platform_file.h"
|
| -
|
| -class GURL;
|
| -
|
| -namespace fileapi {
|
| -struct DirectoryEntry;
|
| -}
|
| -
|
| -namespace WebKit {
|
| -class WebFileSystemCallbacks;
|
| -}
|
| -
|
| -namespace content {
|
| -
|
| -void FileStatusCallbackAdapter(
|
| - WebKit::WebFileSystemCallbacks* callbacks,
|
| - base::PlatformFileError error);
|
| -
|
| -void ReadMetadataCallbackAdapter(
|
| - WebKit::WebFileSystemCallbacks* callbacks,
|
| - const base::PlatformFileInfo& file_info,
|
| - const base::FilePath& platform_path);
|
| -
|
| -void CreateSnapshotFileCallbackAdapter(
|
| - WebKit::WebFileSystemCallbacks* callbacks,
|
| - const base::PlatformFileInfo& file_info,
|
| - const base::FilePath& platform_path);
|
| -
|
| -void ReadDirectoryCallbackAdapater(
|
| - WebKit::WebFileSystemCallbacks* callbacks,
|
| - const std::vector<fileapi::DirectoryEntry>& entries,
|
| - bool has_more);
|
| -
|
| -void OpenFileSystemCallbackAdapter(
|
| - WebKit::WebFileSystemCallbacks* callbacks,
|
| - const std::string& name, const GURL& root);
|
| -
|
| -} // namespace content
|
| -
|
| -#endif // CONTENT_COMMON_FILEAPI_WEBFILESYSTEM_CALLBACK_ADAPTERS_H_
|
|
|