| Index: webkit/tools/test_shell/simple_file_system.cc
|
| ===================================================================
|
| --- webkit/tools/test_shell/simple_file_system.cc (revision 186525)
|
| +++ webkit/tools/test_shell/simple_file_system.cc (working copy)
|
| @@ -21,7 +21,6 @@
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h"
|
| #include "webkit/base/file_path_string_conversions.h"
|
| -#include "webkit/blob/blob_storage_controller.h"
|
| #include "webkit/fileapi/external_mount_points.h"
|
| #include "webkit/fileapi/file_permission_policy.h"
|
| #include "webkit/fileapi/file_system_mount_point_provider.h"
|
| @@ -45,13 +44,13 @@
|
| using WebKit::WebURL;
|
| using WebKit::WebVector;
|
|
|
| -using webkit_blob::BlobData;
|
| -using webkit_blob::BlobStorageController;
|
| using fileapi::FileSystemContext;
|
| using fileapi::FileSystemOperation;
|
| using fileapi::FileSystemTaskRunners;
|
| using fileapi::FileSystemURL;
|
|
|
| +// DEPRECAED start
|
| +/*
|
| namespace {
|
| MessageLoop* g_io_thread;
|
| webkit_blob::BlobStorageController* g_blob_storage_controller;
|
| @@ -73,8 +72,9 @@
|
| g_blob_storage_controller->AppendBlobDataItem(blob_url, item);
|
| g_blob_storage_controller->FinishBuildingBlob(blob_url, mime_type);
|
| }
|
| -
|
| } // namespace
|
| +*/
|
| +// DEPRECAED - end
|
|
|
| SimpleFileSystem::SimpleFileSystem() {
|
| if (file_system_dir_.CreateUniqueTempDir()) {
|
| @@ -266,6 +266,8 @@
|
| url, SnapshotFileHandler_Deprecated(blobURL, callbacks));
|
| }
|
|
|
| +/*
|
| +// DEPRECATED - start
|
| // static
|
| void SimpleFileSystem::InitializeOnIOThread(
|
| webkit_blob::BlobStorageController* blob_storage_controller) {
|
| @@ -278,6 +280,8 @@
|
| g_io_thread = NULL;
|
| g_blob_storage_controller = NULL;
|
| }
|
| +// DEPRECATED - end
|
| +*/
|
|
|
| bool SimpleFileSystem::HasFilePermission(
|
| const fileapi::FileSystemURL& url, int permissions) {
|
| @@ -432,6 +436,7 @@
|
| }
|
| }
|
|
|
| +/*
|
| void SimpleFileSystem::DidCreateSnapshotFile_Deprecated(
|
| const GURL& blob_url,
|
| WebFileSystemCallbacks* callbacks,
|
| @@ -447,3 +452,5 @@
|
| }
|
| DidGetMetadata(callbacks, result, info, platform_path);
|
| }
|
| +*/
|
| +
|
|
|