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

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

Issue 1631923004: Sync 3rd party wallpaper app name (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address tbarzic@'s comments. Created 4 years, 10 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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":"wallpaperPrivate", 7 "namespace":"wallpaperPrivate",
8 "compiler_options": { 8 "compiler_options": {
9 "implemented_in": "chrome/browser/chromeos/extensions/wallpaper_private_ap i.h" 9 "implemented_in": "chrome/browser/chromeos/extensions/wallpaper_private_ap i.h"
10 }, 10 },
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 { 130 {
131 "type": "boolean", 131 "type": "boolean",
132 "name": "generateThumbnail", 132 "name": "generateThumbnail",
133 "description": "If true, callback should have a binary thumbnail." 133 "description": "If true, callback should have a binary thumbnail."
134 }, 134 },
135 { 135 {
136 "type": "string", 136 "type": "string",
137 "name": "fileName" 137 "name": "fileName"
138 }, 138 },
139 { 139 {
140 "type": "string",
141 "name": "thirdPartyAppName",
142 "optional": true,
143 "description": "If non-empty, the wallpaper is a third-party wallpap er."
144 },
145 {
140 "type": "function", 146 "type": "function",
141 "name": "callback", 147 "name": "callback",
142 "parameters": [ 148 "parameters": [
143 { 149 {
144 "type": "binary", 150 "type": "binary",
145 "optional": true, 151 "optional": true,
146 "name": "thumbnail" 152 "name": "thumbnail"
147 } 153 }
148 ] 154 ]
149 } 155 }
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 "description": "The third party custom wallpaper data." 274 "description": "The third party custom wallpaper data."
269 }, 275 },
270 { 276 {
271 "type": "binary", 277 "type": "binary",
272 "name": "thumbnail", 278 "name": "thumbnail",
273 "description": "The third party custom wallpaper thumbnail data." 279 "description": "The third party custom wallpaper thumbnail data."
274 }, 280 },
275 { 281 {
276 "name": "layout", 282 "name": "layout",
277 "$ref": "wallpaper.WallpaperLayout" 283 "$ref": "wallpaper.WallpaperLayout"
284 },
285 {
286 "type": "string",
287 "name": "appname",
288 "description": "The third party wallpaper app name."
278 } 289 }
279 ] 290 ]
280 } 291 }
281 ] 292 ]
282 } 293 }
283 ] 294 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698