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

Unified Diff: webkit/browser/fileapi/file_system_context.h

Issue 452043003: [ew] Add basic classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments. Created 6 years, 4 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/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

Powered by Google App Engine
This is Rietveld 408576698