Chromium Code Reviews| Index: chrome/common/extensions/api/wallpaper.json |
| diff --git a/chrome/common/extensions/api/wallpaper.json b/chrome/common/extensions/api/wallpaper.json |
| index 59f7cb5be4765d5761d94a869ed795b610419783..774925acc0d8e1c50596851e0e1262a9963bf820 100644 |
| --- a/chrome/common/extensions/api/wallpaper.json |
| +++ b/chrome/common/extensions/api/wallpaper.json |
| @@ -9,13 +9,12 @@ |
| "implemented_in": "chrome/browser/chromeos/extensions/wallpaper_api.h" |
| }, |
| "platforms": ["chromeos"], |
| - "description": "none", |
| + "description": "Use the <code>chrome.wallpaper</code> API to change the ChromeOS wallpaper.", |
| "functions": [ |
| { |
| "name": "setWallpaper", |
| "type": "function", |
| - "description": "Sets wallpaper to the image from url with specified layout", |
| - "nodoc": "true", |
| + "description": "Sets wallpaper to the image at <code>url</code> or <code>wallpaperData</code> with the specified layout", |
|
not at google - send to devlin
2013/11/14 21:55:55
I may be contradicting myself now, but for referri
bshe
2013/11/14 22:47:30
Done.
|
| "parameters": [ |
| { |
| "name": "details", |
| @@ -29,7 +28,7 @@ |
| "url": { |
| "type": "string", |
| "optional": true, |
| - "description": "The url of online wallpaper." |
| + "description": "The URL of the wallpaper to be set." |
| }, |
| "layout": { |
| "type": "string", |
| @@ -38,7 +37,7 @@ |
| }, |
| "name": { |
| "type": "string", |
| - "description": "The file name of saved wallpaper." |
| + "description": "The file name of the saved wallpaper." |
| }, |
| "thumbnail": { |
| "type": "boolean", |
| @@ -54,7 +53,8 @@ |
| { |
| "type": "binary", |
| "optional": true, |
| - "name": "thumbnail" |
| + "name": "thumbnail", |
| + "description": "The jpeg encoded wallpaper thumbnail. It is generated by resizing the wallpaper to 128x60." |
| } |
| ] |
| } |