| OLD | NEW |
| 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 [ | 5 [ |
| 6 { | 6 { |
| 7 "namespace": "sessions", | 7 "namespace": "sessions", |
| 8 "description": "Use the <code>chrome.sessions</code> API to query and restor
e tabs and windows from a browsing session.", | 8 "description": "Use the <code>chrome.sessions</code> API to query and restor
e tabs and windows from a browsing session.", |
| 9 "compiler_options": {"use_movable_types": true}, | |
| 10 "types": [ | 9 "types": [ |
| 11 { | 10 { |
| 12 "id": "Filter", | 11 "id": "Filter", |
| 13 "type": "object", | 12 "type": "object", |
| 14 "properties": { | 13 "properties": { |
| 15 "maxResults": { | 14 "maxResults": { |
| 16 "type": "integer", | 15 "type": "integer", |
| 17 "minimum": 0, | 16 "minimum": 0, |
| 18 "maximum": 25, | 17 "maximum": 25, |
| 19 "optional": true, | 18 "optional": true, |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 } | 116 } |
| 118 ], | 117 ], |
| 119 "properties": { | 118 "properties": { |
| 120 "MAX_SESSION_RESULTS": { | 119 "MAX_SESSION_RESULTS": { |
| 121 "value": 25, | 120 "value": 25, |
| 122 "description": "The maximum number of $(ref:sessions.Session) that will
be included in a requested list." | 121 "description": "The maximum number of $(ref:sessions.Session) that will
be included in a requested list." |
| 123 } | 122 } |
| 124 } | 123 } |
| 125 } | 124 } |
| 126 ] | 125 ] |
| OLD | NEW |