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

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

Issue 1878463002: Move DOMArrayBuffer, DOMArrayBufferViews and DataView to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tidy 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 String readyState() const; 70 String readyState() const;
71 unsigned bufferedAmount() const; 71 unsigned bufferedAmount() const;
72 72
73 unsigned bufferedAmountLowThreshold() const; 73 unsigned bufferedAmountLowThreshold() const;
74 void setBufferedAmountLowThreshold(unsigned); 74 void setBufferedAmountLowThreshold(unsigned);
75 75
76 String binaryType() const; 76 String binaryType() const;
77 void setBinaryType(const String&, ExceptionState&); 77 void setBinaryType(const String&, ExceptionState&);
78 78
79 void send(const String&, ExceptionState&); 79 void send(const String&, ExceptionState&);
80 void send(PassRefPtr<DOMArrayBuffer>, ExceptionState&); 80 void send(DOMArrayBuffer*, ExceptionState&);
81 void send(PassRefPtr<DOMArrayBufferView>, ExceptionState&); 81 void send(DOMArrayBufferView*, ExceptionState&);
82 void send(Blob*, ExceptionState&); 82 void send(Blob*, ExceptionState&);
83 83
84 void close(); 84 void close();
85 85
86 DEFINE_ATTRIBUTE_EVENT_LISTENER(open); 86 DEFINE_ATTRIBUTE_EVENT_LISTENER(open);
87 DEFINE_ATTRIBUTE_EVENT_LISTENER(bufferedamountlow); 87 DEFINE_ATTRIBUTE_EVENT_LISTENER(bufferedamountlow);
88 DEFINE_ATTRIBUTE_EVENT_LISTENER(error); 88 DEFINE_ATTRIBUTE_EVENT_LISTENER(error);
89 DEFINE_ATTRIBUTE_EVENT_LISTENER(close); 89 DEFINE_ATTRIBUTE_EVENT_LISTENER(close);
90 DEFINE_ATTRIBUTE_EVENT_LISTENER(message); 90 DEFINE_ATTRIBUTE_EVENT_LISTENER(message);
91 91
(...skipping 34 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