From cd501a7565dd6054a120fbfe62d45b2299cfcc3b Mon Sep 17 00:00:00 2001 From: "pilgrim@chromium.org" Date: Fri, 22 Aug 2014 19:58:31 +0000 Subject: Collapse fileapi, webkit_blob, webkit_database, quota, and webkit_common namespaces into single storage namespace As discussed here: https://groups.google.com/a/chromium.org/forum/#!topic/storage-dev/aQall8GOrS4 BUG=338338 TBR=cevans NOTRY=true Review URL: https://codereview.chromium.org/492873002 Cr-Commit-Position: refs/heads/master@{#291485} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@291485 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/browser/fileapi/file_system_operation_context.cc | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'webkit/browser/fileapi/file_system_operation_context.cc') diff --git a/webkit/browser/fileapi/file_system_operation_context.cc b/webkit/browser/fileapi/file_system_operation_context.cc index dd333ba..1cd1f37 100644 --- a/webkit/browser/fileapi/file_system_operation_context.cc +++ b/webkit/browser/fileapi/file_system_operation_context.cc @@ -7,14 +7,15 @@ #include "base/sequenced_task_runner.h" #include "webkit/browser/fileapi/file_system_context.h" -namespace fileapi { +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_(quota::kQuotaLimitTypeUnknown) {} + quota_limit_type_(storage::kQuotaLimitTypeUnknown) { +} FileSystemOperationContext::FileSystemOperationContext( FileSystemContext* context, @@ -22,11 +23,12 @@ FileSystemOperationContext::FileSystemOperationContext( : file_system_context_(context), task_runner_(task_runner), allowed_bytes_growth_(0), - quota_limit_type_(quota::kQuotaLimitTypeUnknown) {} + quota_limit_type_(storage::kQuotaLimitTypeUnknown) { +} FileSystemOperationContext::~FileSystemOperationContext() { DetachUserDataThread(); setter_thread_checker_.DetachFromThread(); } -} // namespace fileapi +} // namespace storage -- cgit v1.1