summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/api/file_system_provider_internal.idl
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/extensions/api/file_system_provider_internal.idl')
-rw-r--r--chrome/common/extensions/api/file_system_provider_internal.idl13
1 files changed, 13 insertions, 0 deletions
diff --git a/chrome/common/extensions/api/file_system_provider_internal.idl b/chrome/common/extensions/api/file_system_provider_internal.idl
index 7a80d5b..294d09a 100644
--- a/chrome/common/extensions/api/file_system_provider_internal.idl
+++ b/chrome/common/extensions/api/file_system_provider_internal.idl
@@ -48,6 +48,19 @@ namespace fileSystemProviderInternal {
long fileSystemId,
long requestId,
fileSystemProvider.ProviderError error);
+
+ // Internal. Success callback of the <code>onOpenFileRequested</code> event.
+ // Must be called, when opening succeeds.
+ static void openFileRequestedSuccess(
+ long fileSystemId,
+ long requestId);
+
+ // Internal. Error callback of the <code>onOpenFileRequested</code> event.
+ // Must be called when opening fails.
+ static void openFileRequestedError(
+ long fileSystemId,
+ long requestId,
+ fileSystemProvider.ProviderError error);
};
};