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

Unified Diff: chrome/common/extensions/api/file_manager_private.idl

Issue 1221093002: Add support for refreshing contents of providers which don't support watchers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed tests. Created 5 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/common/extensions/api/file_manager_private.idl
diff --git a/chrome/common/extensions/api/file_manager_private.idl b/chrome/common/extensions/api/file_manager_private.idl
index 42eafba03e8d26903e18de586b8de03b1a2f7a6f..d062f459db11044a199df92ed70a65ec023f1a88 100644
--- a/chrome/common/extensions/api/file_manager_private.idl
+++ b/chrome/common/extensions/api/file_manager_private.idl
@@ -334,6 +334,9 @@ dictionary VolumeMetadata {
// Flag that specifies whether the volume is configurable.
boolean configurable;
+ // Flag that specifies whether the volume is watchable.
+ boolean watchable;
+
// Additional data about mount, for example, that the filesystem is not
// supported.
MountCondition? mountCondition;
@@ -531,6 +534,9 @@ dictionary ProvidingExtension {
// Whether supports configuration dialog.
boolean configurable;
+ // Whether supports watching entries.
+ boolean watchable;
+
// Whether supports mounting multiple instances.
boolean multipleMounts;

Powered by Google App Engine
This is Rietveld 408576698