Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 | |
| OLD | NEW |