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

Side by Side Diff: ui/gfx/image/mojo/image.mojom

Issue 2770693002: ash: HiDPI user avatar for SessionController (Closed)
Patch Set: make mojo similar to c++, update test Created 3 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 2017 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 module gfx.mojom;
6
7 // Mojo transport for a SkBitmap via shared buffer.
8 // TODO: Merge into bitmap.mojom in skia and maybe share pixel buffer directly
9 // to make less copies.
10 struct SharedBufferSkBitmap {
11 // Shared buffer handle to hold a serialized SkBitmap.
12 handle<shared_buffer> shared_buffer_handle;
13
14 // Byte size of the shared buffer.
15 uint64 buffer_byte_size;
16 };
17
18 // Mojo transport for an ImageSkiaRep using SharedBufferSkBitmap.
19 struct ImageSkiaRep {
20 // Transport of the bitmap in this representation.
21 SharedBufferSkBitmap bitmap;
22
23 // Corresponding scale of the bitmap or 0 if unscaled.
24 float scale;
25 };
26
27 // Mojo transport for an ImageSkia via shared buffer. Note the ImageSkia would
msw 2017/03/24 18:47:04 optional nit: "Note that transporting an ImageSkia
xiyuan 2017/03/24 18:53:05 Nice. Thanks.
28 // have all reps loaded after using this.
29 struct ImageSkia {
30 array<ImageSkiaRep> image_reps;
31 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698