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

Side by Side Diff: media/mojo/interfaces/video_frame.typemap

Issue 2908303003: media: Create Mojo StructTraits for VideoFrame (Closed)
Patch Set: Code formatting. Created 3 years, 6 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 mojom = "//media/mojo/interfaces/media_types.mojom"
6
7 # Additional headers required by any code which would depend on the mojom
8 # definition of media.mojom.VideoFrame now that the typemap is applied. Any
9 # headers required for the native target type definition should be listed here.
10 public_headers = [
11 "//base/memory/ref_counted.h",
12 "//media/base/video_frame.h",
13 ]
14
15 # Headers which contain the relevant StructTraits specialization(s) for any
16 # type mappings described by this file.
17 traits_headers = [ "//media/mojo/interfaces/video_frame_struct_traits.h" ]
18
19 # Target dependencies exposed by the public_headers and traits_headers.
20 public_deps = [
21 "//base",
22 "//media",
23 "//media/mojo/common:mojo_shared_buffer_video_frame",
24 ]
25
26 type_mappings = [ "media.mojom.VideoFrame=scoped_refptr<media::VideoFrame>[nulla ble_is_same_type]" ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698