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

Unified Diff: chrome/browser/sync_file_system/local/sync_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: chrome/browser/sync_file_system/local/sync_file_system_backend.cc
diff --git a/chrome/browser/sync_file_system/local/sync_file_system_backend.cc b/chrome/browser/sync_file_system/local/sync_file_system_backend.cc
index ef46ac5b85c4a5c7f8baee4851e8c822d8b8d3d4..d1841f65b236f3138d2b94ad5bf26c7ee0626761 100644
--- a/chrome/browser/sync_file_system/local/sync_file_system_backend.cc
+++ b/chrome/browser/sync_file_system/local/sync_file_system_backend.cc
@@ -211,6 +211,21 @@ storage::FileSystemQuotaUtil* SyncFileSystemBackend::GetQuotaUtil() {
return GetDelegate();
}
+const storage::UpdateObserverList* SyncFileSystemBackend::GetUpdateObservers(
+ storage::FileSystemType type) const {
+ return GetDelegate()->GetUpdateObservers(type);
+}
+
+const storage::ChangeObserverList* SyncFileSystemBackend::GetChangeObservers(
+ storage::FileSystemType type) const {
+ return GetDelegate()->GetChangeObservers(type);
+}
+
+const storage::AccessObserverList* SyncFileSystemBackend::GetAccessObservers(
+ storage::FileSystemType type) const {
+ return GetDelegate()->GetAccessObservers(type);
+}
+
// static
SyncFileSystemBackend* SyncFileSystemBackend::GetBackend(
const storage::FileSystemContext* file_system_context) {

Powered by Google App Engine
This is Rietveld 408576698