OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "webkit/fileapi/test_mount_point_provider.h" | 5 #include "webkit/fileapi/test_mount_point_provider.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
153 const FileSystemURL& url, | 153 const FileSystemURL& url, |
154 int64 offset, | 154 int64 offset, |
155 FileSystemContext* context) const { | 155 FileSystemContext* context) const { |
156 return new SandboxFileStreamWriter(context, url, offset); | 156 return new SandboxFileStreamWriter(context, url, offset); |
157 } | 157 } |
158 | 158 |
159 FileSystemQuotaUtil* TestMountPointProvider::GetQuotaUtil() { | 159 FileSystemQuotaUtil* TestMountPointProvider::GetQuotaUtil() { |
160 return quota_util_.get(); | 160 return quota_util_.get(); |
161 } | 161 } |
162 | 162 |
163 void TestMountPointProvider::DeleteFileSystem( | |
164 const GURL& origin_url, | |
165 FileSystemType type, | |
166 FileSystemContext* context, | |
167 const DeleteFileSystemCallback& callback) const { | |
168 // This won't be called unless we add test code that opens a test | |
169 // filesystem by OpenFileSystem. | |
170 NOTREACHED(); | |
tzik
2012/07/28 00:36:46
ditto
nhiroki (google)
2012/07/28 02:01:56
Done.
| |
171 } | |
172 | |
163 } // namespace fileapi | 173 } // namespace fileapi |
OLD | NEW |