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

Side by Side Diff: third_party/WebKit/Source/modules/peerconnection/RTCRtpContributingSource.h

Issue 2848243004: Clean up bindings/core/v8 (Part 2) (Closed)
Patch Set: Rebase Created 3 years, 7 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 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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 RTCRtpContributingSource_h 5 #ifndef RTCRtpContributingSource_h
6 #define RTCRtpContributingSource_h 6 #define RTCRtpContributingSource_h
7 7
8 #include "bindings/core/v8/ScriptWrappable.h" 8 #include "platform/bindings/ScriptWrappable.h"
9 #include "platform/heap/GarbageCollected.h" 9 #include "platform/heap/GarbageCollected.h"
10 #include "platform/heap/Member.h" 10 #include "platform/heap/Member.h"
11 #include "platform/heap/Visitor.h" 11 #include "platform/heap/Visitor.h"
12 12
13 namespace blink { 13 namespace blink {
14 14
15 class RTCRtpReceiver; 15 class RTCRtpReceiver;
16 class WebRTCRtpContributingSource; 16 class WebRTCRtpContributingSource;
17 17
18 // https://w3c.github.io/webrtc-pc/#dom-rtcrtpcontributingsource 18 // https://w3c.github.io/webrtc-pc/#dom-rtcrtpcontributingsource
(...skipping 14 matching lines...) Expand all
33 33
34 private: 34 private:
35 Member<RTCRtpReceiver> receiver_; 35 Member<RTCRtpReceiver> receiver_;
36 double timestamp_ms_; 36 double timestamp_ms_;
37 const uint32_t source_; 37 const uint32_t source_;
38 }; 38 };
39 39
40 } // namespace blink 40 } // namespace blink
41 41
42 #endif // RTCRtpContributingSource_h 42 #endif // RTCRtpContributingSource_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698