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

Side by Side Diff: chrome/common/extensions/api/manifest_types.json

Issue 1221093002: Add support for refreshing contents of providers which don't support watchers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed tests. Created 5 years, 5 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // The type schemas for structured manifest items. Not actually a callable API. 5 // The type schemas for structured manifest items. Not actually a callable API.
6 6
7 [ 7 [
8 { 8 {
9 "namespace": "manifestTypes", 9 "namespace": "manifestTypes",
10 "description": "Schemas for structured manifest entries", 10 "description": "Schemas for structured manifest entries",
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 "configurable": { 184 "configurable": {
185 "type": "boolean", 185 "type": "boolean",
186 "optional": true, 186 "optional": true,
187 "description": "Whether configuring via <code>onConfigureRequested</ code> is supported. By default: <code>false</code>." 187 "description": "Whether configuring via <code>onConfigureRequested</ code> is supported. By default: <code>false</code>."
188 }, 188 },
189 "multiple_mounts": { 189 "multiple_mounts": {
190 "type": "boolean", 190 "type": "boolean",
191 "optional": true, 191 "optional": true,
192 "description": "Whether multiple (more than one) mounted file system s are supported. By default: <code>false</code>." 192 "description": "Whether multiple (more than one) mounted file system s are supported. By default: <code>false</code>."
193 }, 193 },
194 "watchable": {
195 "type": "boolean",
196 "optional": true,
197 "description": "Whether setting watchers and notifying about changes is supported. By default: <code>false</code>."
198 },
194 "source": { 199 "source": {
195 "$ref": "FileSystemProviderSource", 200 "$ref": "FileSystemProviderSource",
196 "description": "Source of data for mounted file systems." 201 "description": "Source of data for mounted file systems."
197 } 202 }
198 } 203 }
199 } 204 }
200 ] 205 ]
201 } 206 }
202 ] 207 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698