Index: chrome/common/extensions/api/sync_file_system.idl |
diff --git a/chrome/common/extensions/api/sync_file_system.idl b/chrome/common/extensions/api/sync_file_system.idl |
index 46f0daed0b00553154f0969d650e55b9d3ed7914..4a657445e56cd014a4349771bb5941ea44e68226 100644 |
--- a/chrome/common/extensions/api/sync_file_system.idl |
+++ b/chrome/common/extensions/api/sync_file_system.idl |
@@ -4,17 +4,6 @@ |
namespace syncFileSystem { |
- dictionary StorageInfo { |
- long usage_bytes; |
- long quota_bytes; |
- }; |
- |
- dictionary SyncState { |
- DOMString service_name; // i.e. ‘drive’ |
- SyncStateStatus state; |
- DOMString description; |
- }; |
- |
enum SyncOperationResult { |
added, updated, deleted, conflicted |
}; |
@@ -56,6 +45,17 @@ namespace syncFileSystem { |
conflicting |
}; |
+ dictionary StorageInfo { |
+ long usage_bytes; |
+ long quota_bytes; |
+ }; |
+ |
+ dictionary SyncState { |
+ DOMString service_name; // i.e. ‘drive’ |
+ SyncStateStatus state; |
+ DOMString description; |
+ }; |
+ |
// [nodoc] A callback type for requestFileSystem. |
callback GetFileSystemCallback = |
void ([instanceOf=DOMFileSystem] object fileSystem); |