Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(385)

Side by Side Diff: content/public/test/sandbox_file_system_test_helper.cc

Issue 136573007: Quota: Factor out (Mock)QuotaManagerProxy into its own file for readability (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/public/test/sandbox_file_system_test_helper.h" 5 #include "content/public/test/sandbox_file_system_test_helper.h"
6 6
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/message_loop/message_loop_proxy.h" 8 #include "base/message_loop/message_loop_proxy.h"
9 #include "base/run_loop.h" 9 #include "base/run_loop.h"
10 #include "content/public/test/test_file_system_context.h" 10 #include "content/public/test/test_file_system_context.h"
11 #include "url/gurl.h" 11 #include "url/gurl.h"
12 #include "webkit/browser/fileapi/file_system_context.h" 12 #include "webkit/browser/fileapi/file_system_context.h"
13 #include "webkit/browser/fileapi/file_system_file_util.h" 13 #include "webkit/browser/fileapi/file_system_file_util.h"
14 #include "webkit/browser/fileapi/file_system_operation_context.h" 14 #include "webkit/browser/fileapi/file_system_operation_context.h"
15 #include "webkit/browser/fileapi/file_system_operation_runner.h" 15 #include "webkit/browser/fileapi/file_system_operation_runner.h"
16 #include "webkit/browser/fileapi/file_system_url.h" 16 #include "webkit/browser/fileapi/file_system_url.h"
17 #include "webkit/browser/fileapi/file_system_usage_cache.h" 17 #include "webkit/browser/fileapi/file_system_usage_cache.h"
18 #include "webkit/browser/fileapi/sandbox_file_system_backend.h" 18 #include "webkit/browser/fileapi/sandbox_file_system_backend.h"
19 #include "webkit/browser/quota/mock_special_storage_policy.h" 19 #include "webkit/browser/quota/mock_special_storage_policy.h"
20 #include "webkit/browser/quota/quota_manager_proxy.h"
20 #include "webkit/common/fileapi/file_system_util.h" 21 #include "webkit/common/fileapi/file_system_util.h"
21 22
22 namespace fileapi { 23 namespace fileapi {
23 24
24 SandboxFileSystemTestHelper::SandboxFileSystemTestHelper( 25 SandboxFileSystemTestHelper::SandboxFileSystemTestHelper(
25 const GURL& origin, FileSystemType type) 26 const GURL& origin, FileSystemType type)
26 : origin_(origin), type_(type), file_util_(NULL) { 27 : origin_(origin), type_(type), file_util_(NULL) {
27 } 28 }
28 29
29 SandboxFileSystemTestHelper::SandboxFileSystemTestHelper() 30 SandboxFileSystemTestHelper::SandboxFileSystemTestHelper()
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 file_system_context_->sandbox_delegate()-> 145 file_system_context_->sandbox_delegate()->
145 GetBaseDirectoryForOriginAndType(origin_, type_, true /* create */); 146 GetBaseDirectoryForOriginAndType(origin_, type_, true /* create */);
146 147
147 // Initialize the usage cache file. 148 // Initialize the usage cache file.
148 base::FilePath usage_cache_path = GetUsageCachePath(); 149 base::FilePath usage_cache_path = GetUsageCachePath();
149 if (!usage_cache_path.empty()) 150 if (!usage_cache_path.empty())
150 usage_cache()->UpdateUsage(usage_cache_path, 0); 151 usage_cache()->UpdateUsage(usage_cache_path, 0);
151 } 152 }
152 153
153 } // namespace fileapi 154 } // namespace fileapi
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698