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

Side by Side Diff: webkit/fileapi/isolated_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/isolated_mount_point_provider.h" 5 #include "webkit/fileapi/isolated_mount_point_provider.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/file_path.h" 10 #include "base/file_path.h"
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 int64 offset, 112 int64 offset,
113 FileSystemContext* context) const { 113 FileSystemContext* context) const {
114 return new LocalFileStreamWriter(url.path(), offset); 114 return new LocalFileStreamWriter(url.path(), offset);
115 } 115 }
116 116
117 FileSystemQuotaUtil* IsolatedMountPointProvider::GetQuotaUtil() { 117 FileSystemQuotaUtil* IsolatedMountPointProvider::GetQuotaUtil() {
118 // No quota support. 118 // No quota support.
119 return NULL; 119 return NULL;
120 } 120 }
121 121
122 void IsolatedMountPointProvider::DeleteFileSystem(
123 const GURL& origin_url,
124 FileSystemType type,
125 FileSystemContext* context,
126 const base::Callback<void(PlatformFileError)>& callback) const {
127 NOTREACHED();
tzik 2012/07/28 00:36:46 ditto. Invoke callback please.
nhiroki (google) 2012/07/28 02:01:56 Done.
128 }
129
122 } // namespace fileapi 130 } // namespace fileapi
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698