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

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

Issue 1848103005: [Extensions] Remove the "use_movable_types" entry from idl/json files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 [ 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
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 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698