Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 mojom = "//ui/gfx/image/mojo/image.mojom" | |
| 6 public_headers = [ | |
| 7 "//third_party/skia/include/core/SkBitmap.h", | |
| 8 "//ui/gfx/image/image_skia_rep.h", | |
| 9 "//ui/gfx/image/image_skia.h", | |
| 10 ] | |
| 11 traits_headers = [ "//ui/gfx/image/mojo/image_skia_struct_traits.h" ] | |
| 12 public_deps = [ | |
| 13 "//ui/gfx/image/mojo:struct_traits", | |
| 14 ] | |
| 15 type_mappings = [ | |
| 16 "gfx.mojom.ImageSkia=gfx::ImageSkia[nullable_is_same_type]", | |
| 17 "gfx.mojom.ImageSkiaRep=gfx::ImageSkiaRep[nullable_is_same_type]", | |
| 18 "gfx.mojom.SharedBufferSkBitmap=SkBitmap[nullable_is_same_type]", | |
|
msw
2017/03/24 17:59:32
Is there any worry in aliasing two mojom types to
xiyuan
2017/03/24 18:36:53
It seems to me that the mojo side must be unique b
| |
| 19 ] | |
| OLD | NEW |