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

Side by Side Diff: media/base/ipc/media_param_traits.h

Issue 2606983002: Media Capture Depth Stream Extensions API: focal length and depth range. (Closed)
Patch Set: base::Optional and nits, thanks mcasas@. Created 3 years, 11 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
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 #include "media/capture/video/video_capture_device_descriptor.h"
11 12
12 namespace media { 13 namespace media {
13 class AudioParameters; 14 class AudioParameters;
14 class EncryptionScheme; 15 class EncryptionScheme;
15 } 16 }
16 17
17 namespace IPC { 18 namespace IPC {
18 19
19 template <> 20 template <>
20 struct ParamTraits<media::AudioParameters> { 21 struct ParamTraits<media::AudioParameters> {
(...skipping 10 matching lines...) Expand all
31 struct ParamTraits<media::EncryptionScheme> { 32 struct ParamTraits<media::EncryptionScheme> {
32 typedef media::EncryptionScheme param_type; 33 typedef media::EncryptionScheme param_type;
33 static void GetSize(base::PickleSizer* s, const param_type& p); 34 static void GetSize(base::PickleSizer* s, const param_type& p);
34 static void Write(base::Pickle* m, const param_type& p); 35 static void Write(base::Pickle* m, const param_type& p);
35 static bool Read(const base::Pickle* m, 36 static bool Read(const base::Pickle* m,
36 base::PickleIterator* iter, 37 base::PickleIterator* iter,
37 param_type* r); 38 param_type* r);
38 static void Log(const param_type& p, std::string* l); 39 static void Log(const param_type& p, std::string* l);
39 }; 40 };
40 41
42 template <>
43 struct ParamTraits<media::VideoCaptureDeviceDescriptor::CameraCalibration> {
44 typedef media::VideoCaptureDeviceDescriptor::CameraCalibration param_type;
45 static void GetSize(base::PickleSizer* s, const param_type& p);
46 static void Write(base::Pickle* m, const param_type& p);
47 static bool Read(const base::Pickle* m,
48 base::PickleIterator* iter,
49 param_type* r);
50 static void Log(const param_type& p, std::string* l);
51 };
52
41 } // namespace IPC 53 } // namespace IPC
42 54
43 #endif // MEDIA_BASE_IPC_MEDIA_PARAM_TRAITS_H_ 55 #endif // MEDIA_BASE_IPC_MEDIA_PARAM_TRAITS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698