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

Unified Diff: storage/browser/fileapi/sandbox_file_system_backend.cc

Issue 549413003: [ew] Move operation observers from QuotaUtil to FileSystemBackend. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 6 years, 3 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: storage/browser/fileapi/sandbox_file_system_backend.cc
diff --git a/storage/browser/fileapi/sandbox_file_system_backend.cc b/storage/browser/fileapi/sandbox_file_system_backend.cc
index 432f595c329fe81f6dcff47cf834e1b4a6642101..ede2e7f8ccac2f84afc4465eddcee65c62fed19f 100644
--- a/storage/browser/fileapi/sandbox_file_system_backend.cc
+++ b/storage/browser/fileapi/sandbox_file_system_backend.cc
@@ -157,6 +157,21 @@ FileSystemQuotaUtil* SandboxFileSystemBackend::GetQuotaUtil() {
return delegate_;
}
+const UpdateObserverList* SandboxFileSystemBackend::GetUpdateObservers(
+ FileSystemType type) const {
+ return delegate_->GetUpdateObservers(type);
+}
+
+const ChangeObserverList* SandboxFileSystemBackend::GetChangeObservers(
+ FileSystemType type) const {
+ return delegate_->GetChangeObservers(type);
+}
+
+const AccessObserverList* SandboxFileSystemBackend::GetAccessObservers(
+ FileSystemType type) const {
+ return delegate_->GetAccessObservers(type);
+}
+
SandboxFileSystemBackendDelegate::OriginEnumerator*
SandboxFileSystemBackend::CreateOriginEnumerator() {
DCHECK(delegate_);
« no previous file with comments | « storage/browser/fileapi/sandbox_file_system_backend.h ('k') | storage/browser/fileapi/sandbox_file_system_backend_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698