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

Unified Diff: media/cast/cast_config.h

Issue 1731403002: media: Add out-of-line copy ctors for complex classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/capture/video/video_capture_device_info.cc ('k') | media/cast/cast_config.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/cast_config.h
diff --git a/media/cast/cast_config.h b/media/cast/cast_config.h
index e6a0a62893ce77ca4aad1c7a6acbdfe4517952b7..465f924e72c7b4b2c650d941ba6d902185d76134 100644
--- a/media/cast/cast_config.h
+++ b/media/cast/cast_config.h
@@ -59,6 +59,7 @@ enum SuggestedDefaults {
// http://crbug.com/530839
struct AudioSenderConfig {
AudioSenderConfig();
+ AudioSenderConfig(const AudioSenderConfig& other);
~AudioSenderConfig();
// Identifier referring to the sender, used by the receiver.
@@ -97,6 +98,7 @@ struct AudioSenderConfig {
struct VideoSenderConfig {
VideoSenderConfig();
+ VideoSenderConfig(const VideoSenderConfig& other);
~VideoSenderConfig();
// Identifier referring to the sender, used by the receiver.
@@ -163,6 +165,7 @@ struct VideoSenderConfig {
// TODO(miu): Naming and minor type changes are badly needed in a later CL.
struct FrameReceiverConfig {
FrameReceiverConfig();
+ FrameReceiverConfig(const FrameReceiverConfig& other);
~FrameReceiverConfig();
// The receiver's SSRC identifier.
« no previous file with comments | « media/capture/video/video_capture_device_info.cc ('k') | media/cast/cast_config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698