| Index: webkit/fileapi/file_system_context.cc
|
| diff --git a/webkit/fileapi/file_system_context.cc b/webkit/fileapi/file_system_context.cc
|
| index e64f4979edbc420f1892881799b0d9e1d748ec00..f0c596e35b538ac6eb9fc43ee0a04ade6bb7c080 100644
|
| --- a/webkit/fileapi/file_system_context.cc
|
| +++ b/webkit/fileapi/file_system_context.cc
|
| @@ -70,9 +70,6 @@ FileSystemContext::FileSystemContext(
|
| #endif
|
| }
|
|
|
| -FileSystemContext::~FileSystemContext() {
|
| -}
|
| -
|
| bool FileSystemContext::DeleteDataForOriginOnFileThread(
|
| const GURL& origin_url) {
|
| DCHECK(file_message_loop_->BelongsToCurrentThread());
|
| @@ -144,14 +141,6 @@ FileSystemContext::external_provider() const {
|
| return external_provider_.get();
|
| }
|
|
|
| -void FileSystemContext::DeleteOnCorrectThread() const {
|
| - if (!io_message_loop_->BelongsToCurrentThread() &&
|
| - io_message_loop_->DeleteSoon(FROM_HERE, this)) {
|
| - return;
|
| - }
|
| - delete this;
|
| -}
|
| -
|
| void FileSystemContext::OpenFileSystem(
|
| const GURL& origin_url,
|
| FileSystemType type,
|
| @@ -206,4 +195,14 @@ webkit_blob::FileReader* FileSystemContext::CreateFileReader(
|
| return mount_point_provider->CreateFileReader(url, offset, file_proxy, this);
|
| }
|
|
|
| +FileSystemContext::~FileSystemContext() {}
|
| +
|
| +void FileSystemContext::DeleteOnCorrectThread() const {
|
| + if (!io_message_loop_->BelongsToCurrentThread() &&
|
| + io_message_loop_->DeleteSoon(FROM_HERE, this)) {
|
| + return;
|
| + }
|
| + delete this;
|
| +}
|
| +
|
| } // namespace fileapi
|
|
|