diff options
author | mtomasz@chromium.org <mtomasz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-22 08:30:56 +0000 |
---|---|---|
committer | mtomasz@chromium.org <mtomasz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-22 08:30:56 +0000 |
commit | cbc01e4be8172cc381d7bfe4063b2b3ded4e5040 (patch) | |
tree | 476e06cdeacd561f762adfe7d25c617cbf9bdc7f | |
parent | 645f1fd90f1adb6423abb9a5f25318b90b23f6b6 (diff) | |
download | chromium_src-cbc01e4be8172cc381d7bfe4063b2b3ded4e5040.zip chromium_src-cbc01e4be8172cc381d7bfe4063b2b3ded4e5040.tar.gz chromium_src-cbc01e4be8172cc381d7bfe4063b2b3ded4e5040.tar.bz2 |
Fixed FileWatchChangedEntry JSON schema.
Previous version wasn't a legal JSON schema.
TEST=Chrome should start.
BUG=167079
Review URL: https://chromiumcodereview.appspot.com/12049009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@177985 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/common/extensions/api/file_browser_private.json | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/chrome/common/extensions/api/file_browser_private.json b/chrome/common/extensions/api/file_browser_private.json index 087224e..ab0c275 100644 --- a/chrome/common/extensions/api/file_browser_private.json +++ b/chrome/common/extensions/api/file_browser_private.json @@ -369,13 +369,15 @@ "type": "object", "description": "Information about changed file or directory", "properties": { - "type": "string", - "enum": ["added", "deleted", "updated"], - "description": "Specifies type of the change." - }, - "fileUrl": { - "type": "string", - "description": "URL of the changed file." + "changeType": { + "type": "string", + "enum": ["added", "deleted", "updated"], + "description": "Specifies type of the change." + }, + "fileUrl": { + "type": "string", + "description": "URL of the changed file." + } } } ], |