OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 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 CONTENT_COMMON_MEDIA_AUDIO_AUDIO_PARAM_TRAITS_H_ | |
6 #define CONTENT_COMMON_MEDIA_AUDIO_AUDIO_PARAM_TRAITS_H_ | |
7 #pragma once | |
8 | |
9 #include "ipc/ipc_message.h" | |
10 #include "ipc/ipc_param_traits.h" | |
11 | |
12 class AudioParameters; | |
13 | |
14 namespace IPC { | |
15 | |
16 // These datatypes are used by utility_messages.h and render_messages.h. | |
jam
2012/03/20 15:58:47
nit: did you mean to copy this comment?
vrk (LEFT CHROMIUM)
2012/03/21 00:35:24
gaah d'oh. I did not! Thanks for the catch, delete
| |
17 // Unfortunately we can't move it to common: MSVC linker complains about | |
18 // WebKit datatypes that are not linked on npchrome_frame (even though it's | |
19 // never actually used by that target). | |
20 | |
21 template <> | |
22 struct ParamTraits<AudioParameters> { | |
23 typedef AudioParameters param_type; | |
24 static void Write(Message* m, const param_type& p); | |
25 static bool Read(const Message* m, PickleIterator* iter, param_type* r); | |
26 static void Log(const param_type& p, std::string* l); | |
27 }; | |
28 | |
29 } // namespace IPC | |
30 | |
31 #endif // CONTENT_COMMON_MEDIA_AUDIO_AUDIO_PARAM_TRAITS_H_ | |
OLD | NEW |