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

Side by Side Diff: skia/public/interfaces/bitmap_array_struct_traits.h

Issue 2850733003: Remove BitmapArray. (Closed)
Patch Set: Remove more headers. Created 3 years, 7 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 SKIA_PUBLIC_INTERFACES_BITMAP_ARRAY_STRUCT_TRAITS_H_
6 #define SKIA_PUBLIC_INTERFACES_BITMAP_ARRAY_STRUCT_TRAITS_H_
7
8 #include <vector>
9
10 #include "skia/public/interfaces/bitmap_array.mojom.h"
11 #include "third_party/skia/include/core/SkBitmap.h"
12
13 namespace mojo {
14
15 template <>
16 struct StructTraits<skia::mojom::BitmapArrayDataView, std::vector<SkBitmap>> {
17 static const std::vector<SkBitmap>& bitmaps(
18 const std::vector<SkBitmap>& bitmaps) {
19 return bitmaps;
20 }
21
22 static bool Read(skia::mojom::BitmapArrayDataView data,
23 std::vector<SkBitmap>* out) {
24 return data.ReadBitmaps(out);
25 }
26 };
27
28 } // namespace mojo
29
30 #endif // SKIA_PUBLIC_INTERFACES_BITMAP_ARRAY_STRUCT_TRAITS_H_
OLDNEW
« no previous file with comments | « skia/public/interfaces/bitmap_array.typemap ('k') | skia/public/interfaces/test/struct_traits_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698