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

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

Issue 11827026: Overhaul JSON Schema Compiler to support a number of features required to (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 11 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
« no previous file with comments | « chrome/common/extensions/api/runtime.json ('k') | chrome/common/extensions/api/web_request_internal.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « chrome/common/extensions/api/runtime.json ('k') | chrome/common/extensions/api/web_request_internal.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698