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

Unified Diff: chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.h

Issue 625463002: [fsp] Add support for observing entries and notifying about changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More implementation. Created 6 years, 2 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/chromeos/extensions/file_system_provider/file_system_provider_api.h
diff --git a/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.h b/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.h
index 3085ecc6b86e62ac78760f222a0edaf9b796c2e4..bab24ae28cdbddd103d6c43b793f028d729ab6b8 100644
--- a/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.h
+++ b/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.h
@@ -40,6 +40,16 @@ class FileSystemProviderGetAllFunction : public ChromeSyncExtensionFunction {
virtual bool RunSync() OVERRIDE;
};
+class FileSystemProviderNotifyFunction : public ChromeSyncExtensionFunction {
mtomasz 2014/10/03 04:22:47 Extensions call this method to notify Chrome about
+ public:
+ DECLARE_EXTENSION_FUNCTION("fileSystemProvider.notify",
+ FILESYSTEMPROVIDER_NOTIFY)
+
+ protected:
+ virtual ~FileSystemProviderNotifyFunction() {}
+ virtual bool RunSync() OVERRIDE;
+};
+
class FileSystemProviderInternalUnmountRequestedSuccessFunction
: public FileSystemProviderInternalFunction {
public:

Powered by Google App Engine
This is Rietveld 408576698