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

Side by Side Diff: third_party/WebKit/Source/modules/mediastream/RTCDataChannel.h

Issue 1857143002: Oilpan: Remove RefCountedGarbageCollectedEventTargetWithInlineData (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 27 matching lines...) Expand all
38 class Blob; 38 class Blob;
39 class DOMArrayBuffer; 39 class DOMArrayBuffer;
40 class DOMArrayBufferView; 40 class DOMArrayBufferView;
41 class ExceptionState; 41 class ExceptionState;
42 class RTCPeerConnection; 42 class RTCPeerConnection;
43 class WebRTCDataChannelHandler; 43 class WebRTCDataChannelHandler;
44 class WebRTCPeerConnectionHandler; 44 class WebRTCPeerConnectionHandler;
45 struct WebRTCDataChannelInit; 45 struct WebRTCDataChannelInit;
46 46
47 class MODULES_EXPORT RTCDataChannel final 47 class MODULES_EXPORT RTCDataChannel final
48 : public RefCountedGarbageCollectedEventTargetWithInlineData<RTCDataChannel> 48 : public EventTargetWithInlineData
49 , WTF_NON_EXPORTED_BASE(public WebRTCDataChannelHandlerClient) { 49 , WTF_NON_EXPORTED_BASE(public WebRTCDataChannelHandlerClient) {
50 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(RTCDataChannel); 50 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(RTCDataChannel);
51 DEFINE_WRAPPERTYPEINFO(); 51 DEFINE_WRAPPERTYPEINFO();
52 USING_PRE_FINALIZER(RTCDataChannel, dispose); 52 USING_PRE_FINALIZER(RTCDataChannel, dispose);
53 public: 53 public:
54 static RTCDataChannel* create(ExecutionContext*, PassOwnPtr<WebRTCDataChanne lHandler>); 54 static RTCDataChannel* create(ExecutionContext*, PassOwnPtr<WebRTCDataChanne lHandler>);
55 static RTCDataChannel* create(ExecutionContext*, WebRTCPeerConnectionHandler *, const String& label, const WebRTCDataChannelInit&, ExceptionState&); 55 static RTCDataChannel* create(ExecutionContext*, WebRTCPeerConnectionHandler *, const String& label, const WebRTCDataChannelInit&, ExceptionState&);
56 ~RTCDataChannel() override; 56 ~RTCDataChannel() override;
57 57
58 ReadyState getHandlerState() const; 58 ReadyState getHandlerState() const;
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 HeapVector<Member<Event>> m_scheduledEvents; 126 HeapVector<Member<Event>> m_scheduledEvents;
127 127
128 unsigned m_bufferedAmountLowThreshold; 128 unsigned m_bufferedAmountLowThreshold;
129 129
130 FRIEND_TEST_ALL_PREFIXES(RTCDataChannelTest, BufferedAmountLow); 130 FRIEND_TEST_ALL_PREFIXES(RTCDataChannelTest, BufferedAmountLow);
131 }; 131 };
132 132
133 } // namespace blink 133 } // namespace blink
134 134
135 #endif // RTCDataChannel_h 135 #endif // RTCDataChannel_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698