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

Side by Side Diff: third_party/WebKit/Source/modules/mediasession/MojoMediaArtwork.h

Issue 2367393002: Migrating MediaSession messages to mojo (Closed)
Patch Set: blink typemap (need to revert blink typemap, only need content/ reivew) Created 4 years, 2 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 #ifndef MojoMediaArtwork_h
6 #define MojoMediaArtwork_h
7
8 #include "platform/weborigin/KURL.h"
9 #include "public/platform/WebSize.h"
10 #include "public/platform/WebString.h"
11 #include "wtf/Vector.h"
12
13 namespace blink {
14
15 struct MojoMediaArtwork {
Ken Rockot(use gerrit already) 2016/10/03 20:39:33 You should either not use a typemap at all in Blin
Zhiqiang Zhang (Slow) 2016/10/03 21:00:20 OK. Thanks for your explanation! I was trying to m
16 KURL src;
17 WebString type;
18 Vector<WebSize> sizes;
19 };
20
21 } // namespace blink
22
23 #endif // MojoMediaArtwork_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698