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

Side by Side Diff: mojo/dart/packages/mojo_services/lib/mojo/media/media_metadata.mojom.dart

Issue 1539673003: Generate Mojom Types in Dart (Take 2) (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Merge with master Created 4 years, 10 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 library media_metadata_mojom; 5 library media_metadata_mojom;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import 'package:mojo/bindings.dart' as bindings; 9 import 'package:mojo/bindings.dart' as bindings;
10 import 'package:mojo/core.dart' as core; 10 import 'package:mojo/core.dart' as core;
11 import 'package:mojo/mojo/bindings/types/mojom_types.mojom.dart' as mojom_types;
11 12
12 13
13 14
15
14 class MediaMetadata extends bindings.Struct { 16 class MediaMetadata extends bindings.Struct {
15 static const List<bindings.StructDataHeader> kVersions = const [ 17 static const List<bindings.StructDataHeader> kVersions = const [
16 const bindings.StructDataHeader(64, 0) 18 const bindings.StructDataHeader(64, 0)
17 ]; 19 ];
18 int duration = 0; 20 int duration = 0;
19 String title = null; 21 String title = null;
20 String artist = null; 22 String artist = null;
21 String album = null; 23 String album = null;
22 String publisher = null; 24 String publisher = null;
23 String genre = null; 25 String genre = null;
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 map["artist"] = artist; 127 map["artist"] = artist;
126 map["album"] = album; 128 map["album"] = album;
127 map["publisher"] = publisher; 129 map["publisher"] = publisher;
128 map["genre"] = genre; 130 map["genre"] = genre;
129 map["composer"] = composer; 131 map["composer"] = composer;
130 return map; 132 return map;
131 } 133 }
132 } 134 }
133 135
134 136
137
138
139
140
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698