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

Unified Diff: chrome/browser/chromeos/fileapi/cros_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: chrome/browser/chromeos/fileapi/cros_mount_point_provider.cc
diff --git a/chrome/browser/chromeos/fileapi/cros_mount_point_provider.cc b/chrome/browser/chromeos/fileapi/cros_mount_point_provider.cc
index 8c799d82f44c723af6a8432e3b77795362dd1cf2..5b4eccfbfd01d1570e2fce6b1355679a52f9660e 100644
--- a/chrome/browser/chromeos/fileapi/cros_mount_point_provider.cc
+++ b/chrome/browser/chromeos/fileapi/cros_mount_point_provider.cc
@@ -106,6 +106,12 @@ bool CrosMountPointProvider::CanHandleType(fileapi::FileSystemType type) const {
}
}
+GURL CrosMountPointProvider::GetRootURI(const GURL& origin_url,
+ fileapi::FileSystemType type) const {
+ NOTIMPLEMENTED();
+ return GURL();
+}
+
void CrosMountPointProvider::OpenFileSystem(
const GURL& origin_url,
fileapi::FileSystemType type,
@@ -121,6 +127,13 @@ fileapi::FileSystemQuotaUtil* CrosMountPointProvider::GetQuotaUtil() {
return NULL;
}
+const fileapi::UpdateObserverList*
+CrosMountPointProvider::GetUpdateObservers(
+ fileapi::FileSystemType type) const {
+ // No update observer support.
+ return NULL;
+}
+
bool CrosMountPointProvider::IsAccessAllowed(
const fileapi::FileSystemURL& url) const {
if (!url.is_valid())

Powered by Google App Engine
This is Rietveld 408576698