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

Unified Diff: webkit/browser/fileapi/test_mount_point_provider.cc

Issue 18668003: SyncFS: Introduce SyncFileSystemBackend (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: webkit/browser/fileapi/test_mount_point_provider.cc
diff --git a/webkit/browser/fileapi/test_mount_point_provider.cc b/webkit/browser/fileapi/test_mount_point_provider.cc
index 20a1a4a44574c6789d89f04896e15453073c420e..679b1a9246f8b7f265d2db702f3e24bc79444f73 100644
--- a/webkit/browser/fileapi/test_mount_point_provider.cc
+++ b/webkit/browser/fileapi/test_mount_point_provider.cc
@@ -99,6 +99,13 @@ bool TestMountPointProvider::CanHandleType(FileSystemType type) const {
return (type == kFileSystemTypeTest);
}
+GURL TestMountPointProvider::GetRootURI(const GURL& origin_url,
+ FileSystemType type) const {
+ if (!CanHandleType(type))
+ return GURL();
+ return GetFileSystemRootURI(origin_url, type);
+}
+
void TestMountPointProvider::OpenFileSystem(
const GURL& origin_url,
FileSystemType type,

Powered by Google App Engine
This is Rietveld 408576698