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

Side by Side Diff: Source/platform/mediastream/MediaStreamDescriptor.h

Issue 858663002: Fix template angle bracket syntax in platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 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 /* 1 /*
2 * Copyright (C) 2011 Ericsson AB. All rights reserved. 2 * Copyright (C) 2011 Ericsson AB. All rights reserved.
3 * Copyright (C) 2012 Google Inc. All rights reserved. 3 * Copyright (C) 2012 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 85
86 ExtraData* extraData() const { return m_extraData.get(); } 86 ExtraData* extraData() const { return m_extraData.get(); }
87 void setExtraData(PassOwnPtr<ExtraData> extraData) { m_extraData = extraData ; } 87 void setExtraData(PassOwnPtr<ExtraData> extraData) { m_extraData = extraData ; }
88 88
89 private: 89 private:
90 MediaStreamDescriptor(const String& id, const MediaStreamSourceVector& audio Sources, const MediaStreamSourceVector& videoSources); 90 MediaStreamDescriptor(const String& id, const MediaStreamSourceVector& audio Sources, const MediaStreamSourceVector& videoSources);
91 MediaStreamDescriptor(const String& id, const MediaStreamComponentVector& au dioComponents, const MediaStreamComponentVector& videoComponents); 91 MediaStreamDescriptor(const String& id, const MediaStreamComponentVector& au dioComponents, const MediaStreamComponentVector& videoComponents);
92 92
93 MediaStreamDescriptorClient* m_client; 93 MediaStreamDescriptorClient* m_client;
94 String m_id; 94 String m_id;
95 Vector<RefPtr<MediaStreamComponent> > m_audioComponents; 95 Vector<RefPtr<MediaStreamComponent>> m_audioComponents;
96 Vector<RefPtr<MediaStreamComponent> > m_videoComponents; 96 Vector<RefPtr<MediaStreamComponent>> m_videoComponents;
97 bool m_ended; 97 bool m_ended;
98 98
99 OwnPtr<ExtraData> m_extraData; 99 OwnPtr<ExtraData> m_extraData;
100 }; 100 };
101 101
102 typedef Vector<RefPtr<MediaStreamDescriptor> > MediaStreamDescriptorVector; 102 typedef Vector<RefPtr<MediaStreamDescriptor>> MediaStreamDescriptorVector;
103 103
104 } // namespace blink 104 } // namespace blink
105 105
106 #endif // MediaStreamDescriptor_h 106 #endif // MediaStreamDescriptor_h
OLDNEW
« no previous file with comments | « Source/platform/mediastream/MediaStreamComponent.h ('k') | Source/platform/mediastream/MediaStreamSource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698