OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef MEDIA_BASE_IPC_MEDIA_PARAM_TRAITS_H_ | 5 #ifndef MEDIA_BASE_IPC_MEDIA_PARAM_TRAITS_H_ |
6 #define MEDIA_BASE_IPC_MEDIA_PARAM_TRAITS_H_ | 6 #define MEDIA_BASE_IPC_MEDIA_PARAM_TRAITS_H_ |
7 | 7 |
8 #include "ipc/ipc_message.h" | 8 #include "ipc/ipc_message.h" |
9 #include "ipc/ipc_param_traits.h" | 9 #include "ipc/ipc_param_traits.h" |
10 #include "media/base/ipc/media_param_traits_macros.h" | 10 #include "media/base/ipc/media_param_traits_macros.h" |
11 | 11 |
12 namespace media { | 12 namespace media { |
13 class AudioParameters; | 13 class AudioParameters; |
14 struct VideoCaptureFormat; | |
15 } | 14 } |
16 | 15 |
17 namespace IPC { | 16 namespace IPC { |
18 | 17 |
19 template <> | 18 template <> |
20 struct ParamTraits<media::AudioParameters> { | 19 struct ParamTraits<media::AudioParameters> { |
21 typedef media::AudioParameters param_type; | 20 typedef media::AudioParameters param_type; |
22 static void GetSize(base::PickleSizer* s, const param_type& p); | 21 static void GetSize(base::PickleSizer* s, const param_type& p); |
23 static void Write(base::Pickle* m, const param_type& p); | 22 static void Write(base::Pickle* m, const param_type& p); |
24 static bool Read(const base::Pickle* m, | 23 static bool Read(const base::Pickle* m, |
25 base::PickleIterator* iter, | 24 base::PickleIterator* iter, |
26 param_type* r); | 25 param_type* r); |
27 static void Log(const param_type& p, std::string* l); | 26 static void Log(const param_type& p, std::string* l); |
28 }; | 27 }; |
29 | 28 |
30 template <> | |
31 struct ParamTraits<media::VideoCaptureFormat> { | |
32 typedef media::VideoCaptureFormat param_type; | |
33 static void GetSize(base::PickleSizer* s, const param_type& p); | |
34 static void Write(base::Pickle* m, const param_type& p); | |
35 static bool Read(const base::Pickle* m, | |
36 base::PickleIterator* iter, | |
37 param_type* r); | |
38 static void Log(const param_type& p, std::string* l); | |
39 }; | |
40 | |
41 } // namespace IPC | 29 } // namespace IPC |
42 | 30 |
43 #endif // MEDIA_BASE_IPC_MEDIA_PARAM_TRAITS_H_ | 31 #endif // MEDIA_BASE_IPC_MEDIA_PARAM_TRAITS_H_ |
OLD | NEW |