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

Side by Side Diff: components/arc/common/wallpaper.mojom

Issue 2264743002: cheets: implement cros side of WallpaperManagerService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cheets: implement cros side of WallpaperManagerService. Created 4 years, 3 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 // Next MinVersion: 1
6
7 module arc.mojom;
8
9 // Handles wallpaper calls from ARC in Chrome.
10 // Next method ID:2
11 interface WallpaperHost {
12 // Gets current wallpaper encoded in PNG and send it back to ARC.
13 GetWallpaper@0() => (array<uint8> wallpaper);
14
15 // Sets an image from ARC as the wallpaper.
16 // |png_data| is a PNG encoded wallpaper image.
17 SetWallpaper@1(array<uint8> png_data);
hidehiko 2016/09/02 05:07:13 Clarification: I'd like to know the clean-up plan.
Luis Héctor Chávez 2016/09/02 16:23:48 The intention is to drop the IntentHelper's SetWal
hidehiko 2016/09/06 05:19:58 Makes sense. Thank you for clarification.
18 };
19
20 // Connects with container side to publish wallpaper related intents.
21 // Next method ID:1
22 interface WallpaperInstance {
23 // Establishes communication with the container side.
24 Init@0(WallpaperHost host_ptr);
25 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698