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

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

Issue 12769017: Add delete context menu for custom wallpapers and some ui tweaks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 | Annotate | Revision Log
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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 "name": "url" 77 "name": "url"
78 }, 78 },
79 { 79 {
80 "type": "function", 80 "type": "function",
81 "name": "callback", 81 "name": "callback",
82 "parameters": [] 82 "parameters": []
83 } 83 }
84 ] 84 ]
85 }, 85 },
86 { 86 {
87 "name": "resetWallpaper",
88 "type": "function",
89 "description": "Clears current user's active custom wallpaper and change s to default wallpaper.",
90 "nodoc": "true",
91 "parameters": []
92 },
93 {
87 "name": "setCustomWallpaper", 94 "name": "setCustomWallpaper",
88 "type": "function", 95 "type": "function",
89 "description": "Sets wallpaper to the image from local file with specifi ed layout and returns thumbnail if needed.", 96 "description": "Sets wallpaper to the image from local file with specifi ed layout and returns thumbnail if needed.",
90 "nodoc": "true", 97 "nodoc": "true",
91 "parameters": [ 98 "parameters": [
92 { 99 {
93 "type": "binary", 100 "type": "binary",
94 "name": "wallpaper" 101 "name": "wallpaper"
95 }, 102 },
96 { 103 {
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 "name": "results", 236 "name": "results",
230 "items": {"type": "string"} 237 "items": {"type": "string"}
231 } 238 }
232 ] 239 ]
233 } 240 }
234 ] 241 ]
235 } 242 }
236 ] 243 ]
237 } 244 }
238 ] 245 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698