summaryrefslogtreecommitdiffstats
path: root/content/browser/fileapi
diff options
context:
space:
mode:
authornhiroki@google.com <nhiroki@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-24 20:05:33 +0000
committernhiroki@google.com <nhiroki@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-24 20:05:33 +0000
commit02a6054b5aa80fc8c346fa70fea336bb63edc4be (patch)
tree4a06cc30ffad1de8b758f0f34c5b36993e560a0b /content/browser/fileapi
parentcd31afc3b22fe58a2e03b269032ed85479d056fd (diff)
downloadchromium_src-02a6054b5aa80fc8c346fa70fea336bb63edc4be.zip
chromium_src-02a6054b5aa80fc8c346fa70fea336bb63edc4be.tar.gz
chromium_src-02a6054b5aa80fc8c346fa70fea336bb63edc4be.tar.bz2
Renamed FileSystemOperation to LocalFileSystemOperation.
BUG=138020 TEST=content_unittests Review URL: https://chromiumcodereview.appspot.com/10790096 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148178 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/fileapi')
-rw-r--r--content/browser/fileapi/fileapi_message_filter.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/content/browser/fileapi/fileapi_message_filter.cc b/content/browser/fileapi/fileapi_message_filter.cc
index 206cb0c..e7102a0 100644
--- a/content/browser/fileapi/fileapi_message_filter.cc
+++ b/content/browser/fileapi/fileapi_message_filter.cc
@@ -28,10 +28,10 @@
#include "webkit/blob/shareable_file_reference.h"
#include "webkit/fileapi/isolated_context.h"
#include "webkit/fileapi/file_system_context.h"
-#include "webkit/fileapi/file_system_operation.h"
#include "webkit/fileapi/file_system_quota_util.h"
#include "webkit/fileapi/file_system_types.h"
#include "webkit/fileapi/file_system_util.h"
+#include "webkit/fileapi/local_file_system_operation.h"
#include "webkit/fileapi/sandbox_mount_point_provider.h"
using content::BrowserMessageFilter;
@@ -40,8 +40,8 @@ using content::UserMetricsAction;
using fileapi::FileSystemURL;
using fileapi::FileSystemFileUtil;
using fileapi::FileSystemMountPointProvider;
-using fileapi::FileSystemOperation;
using fileapi::FileSystemOperationInterface;
+using fileapi::LocalFileSystemOperation;
using webkit_blob::BlobData;
using webkit_blob::BlobStorageController;
@@ -480,8 +480,8 @@ void FileAPIMessageFilter::OnSyncGetPlatformPath(
// (e.g. TEMPORARY or PERSISTENT).
// TODO(kinuko): this hack should go away once appropriate upload-stream
// handling based on element types is supported.
- FileSystemOperation* operation =
- context_->CreateFileSystemOperation(url)->AsFileSystemOperation();
+ LocalFileSystemOperation* operation =
+ context_->CreateFileSystemOperation(url)->AsLocalFileSystemOperation();
DCHECK(operation);
operation->SyncGetPlatformPath(url, platform_path);
}