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

Side by Side Diff: ui/file_manager/externs/chrome_wallpaper.js

Issue 1679983003: Set wallpaper from right click menu in Files app. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use enum Created 4 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
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 /**
5 * TODO(ryoh): REMOVE this file if we decide how to define annotations for this
6 * API.
7 * @see https://codereview.chromium.org/1679983003/
8 */
9 /**
10 * @const
11 * @see https://goo.gl/7dvJFW
12 */
13 chrome.wallpaper = {};
14
15 /**
16 * Sets wallpaper to the image at url or wallpaperData with the specified
17 * layout.
18 * @param {{
19 * data: (ArrayBuffer|undefined),
20 * url: (string|undefined),
21 * layout: string,
22 * filename: string,
23 * thumbnail: (boolean|undefined)
24 * }} details
25 * @param {function(ArrayBuffer=)} callback
26 *
27 */
28 chrome.wallpaper.setWallpaper = function(details, callback) {};
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698