Index: webkit/browser/fileapi/file_system_context.h |
diff --git a/webkit/browser/fileapi/file_system_context.h b/webkit/browser/fileapi/file_system_context.h |
index 428ef601149e660da3b49cdb710d5704a26609ed..b881c16e19ed00a63add781b601206d09c4328a5 100644 |
--- a/webkit/browser/fileapi/file_system_context.h |
+++ b/webkit/browser/fileapi/file_system_context.h |
@@ -65,6 +65,7 @@ class IsolatedFileSystemBackend; |
class MountPoints; |
class QuotaReservation; |
class SandboxFileSystemBackend; |
+class WatchManager; |
struct DefaultContextDeleter; |
struct FileSystemInfo; |
@@ -163,6 +164,10 @@ class WEBKIT_STORAGE_BROWSER_EXPORT FileSystemContext |
FileSystemBackend* GetFileSystemBackend( |
FileSystemType type) const; |
+ // Returns the watcher manager for the given |type|. |
+ // This may return NULL if the type does not support watching. |
+ WatcherManager* GetWatcherManager(FileSystemType type) const; |
+ |
// Returns true for sandboxed filesystems. Currently this does |
// the same as GetQuotaUtil(type) != NULL. (In an assumption that |
// all sandboxed filesystems must cooperate with QuotaManager so that |