diff options
author | pilgrim <pilgrim@chromium.org> | 2014-09-05 10:30:15 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-09-05 17:32:24 +0000 |
commit | 4af8c2120e23d17c1cac3f929c3a1d901c5701ab (patch) | |
tree | 40e4ca0d45ec498ea74b9b4b232764abc1ec6ab1 /webkit/browser/fileapi/file_system_operation_context.cc | |
parent | a602902631a762be0b49ac0af09de0c9c840e183 (diff) | |
download | chromium_src-4af8c2120e23d17c1cac3f929c3a1d901c5701ab.zip chromium_src-4af8c2120e23d17c1cac3f929c3a1d901c5701ab.tar.gz chromium_src-4af8c2120e23d17c1cac3f929c3a1d901c5701ab.tar.bz2 |
Migrate webkit/browser/ to storage/browser/
using TBR because Darin told me he defers to James' judgement. Using NOTRY because there is one presubmit error (dump_file_system.cc was moved and it spews printf).
BUG=338338
TBR=darin@chromium.org
NOTRY=true
Review URL: https://codereview.chromium.org/539143002
Cr-Commit-Position: refs/heads/master@{#293547}
Diffstat (limited to 'webkit/browser/fileapi/file_system_operation_context.cc')
-rw-r--r-- | webkit/browser/fileapi/file_system_operation_context.cc | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/webkit/browser/fileapi/file_system_operation_context.cc b/webkit/browser/fileapi/file_system_operation_context.cc deleted file mode 100644 index 1cd1f37..0000000 --- a/webkit/browser/fileapi/file_system_operation_context.cc +++ /dev/null @@ -1,34 +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. - -#include "webkit/browser/fileapi/file_system_operation_context.h" - -#include "base/sequenced_task_runner.h" -#include "webkit/browser/fileapi/file_system_context.h" - -namespace storage { - -FileSystemOperationContext::FileSystemOperationContext( - FileSystemContext* context) - : file_system_context_(context), - task_runner_(file_system_context_->default_file_task_runner()), - allowed_bytes_growth_(0), - quota_limit_type_(storage::kQuotaLimitTypeUnknown) { -} - -FileSystemOperationContext::FileSystemOperationContext( - FileSystemContext* context, - base::SequencedTaskRunner* task_runner) - : file_system_context_(context), - task_runner_(task_runner), - allowed_bytes_growth_(0), - quota_limit_type_(storage::kQuotaLimitTypeUnknown) { -} - -FileSystemOperationContext::~FileSystemOperationContext() { - DetachUserDataThread(); - setter_thread_checker_.DetachFromThread(); -} - -} // namespace storage |