summaryrefslogtreecommitdiffstats
path: root/webkit/browser/fileapi/file_system_operation_impl.h
diff options
context:
space:
mode:
authorteravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-02 01:39:42 +0000
committerteravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-02 01:39:42 +0000
commita4940662f8c2755296e3f8348a6090db260a3d3b (patch)
treea73511fc1eadf7b7787c8d8b75ca5b470c388b0b /webkit/browser/fileapi/file_system_operation_impl.h
parent596155f24b340f8c8dd61cb1ee53be62294183fa (diff)
downloadchromium_src-a4940662f8c2755296e3f8348a6090db260a3d3b.zip
chromium_src-a4940662f8c2755296e3f8348a6090db260a3d3b.tar.gz
chromium_src-a4940662f8c2755296e3f8348a6090db260a3d3b.tar.bz2
Pepper: Move FileIO host from renderer to browser.
This change is large because it moves QuotaFileIO and PepperFileIOHost all at once to the browser process. Some code in the refactored PepperFileIOHost is moved from what's provided in FileAPIMessageFilter. Tested locally with Bastion, From Dust, and Angry Bots. TBR=jschuh BUG=246396 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=232440 Review URL: https://codereview.chromium.org/33053002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@232547 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/browser/fileapi/file_system_operation_impl.h')
-rw-r--r--webkit/browser/fileapi/file_system_operation_impl.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/webkit/browser/fileapi/file_system_operation_impl.h b/webkit/browser/fileapi/file_system_operation_impl.h
index a4fa3fe..0625995 100644
--- a/webkit/browser/fileapi/file_system_operation_impl.h
+++ b/webkit/browser/fileapi/file_system_operation_impl.h
@@ -69,7 +69,6 @@ class WEBKIT_STORAGE_BROWSER_EXPORT FileSystemOperationImpl
const StatusCallback& callback) OVERRIDE;
virtual void OpenFile(const FileSystemURL& url,
int file_flags,
- base::ProcessHandle peer_handle,
const OpenFileCallback& callback) OVERRIDE;
virtual void Cancel(const StatusCallback& cancel_callback) OVERRIDE;
virtual void CreateSnapshotFile(
@@ -195,10 +194,6 @@ class WEBKIT_STORAGE_BROWSER_EXPORT FileSystemOperationImpl
StatusCallback cancel_callback_;
- // Used only by OpenFile, in order to clone the file handle back to the
- // requesting process.
- base::ProcessHandle peer_handle_;
-
// A flag to make sure we call operation only once per instance.
OperationType pending_operation_;