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

Side by Side Diff: webkit/fileapi/test_mount_point_provider.cc

Issue 10828043: Wire up the deleteFileSystem operation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Modified CrosMountPointProvider too. Created 8 years, 4 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 (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
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
OLDNEW
« webkit/fileapi/test_mount_point_provider.h ('K') | « webkit/fileapi/test_mount_point_provider.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698