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

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

Issue 2572603002: ABANDONED CL: Rename readyState() to getReadyState(). (Closed)
Patch Set: Created 4 years 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 71
72 // DEPRECATED 72 // DEPRECATED
73 bool reliable() const; 73 bool reliable() const;
74 74
75 bool ordered() const; 75 bool ordered() const;
76 unsigned short maxRetransmitTime() const; 76 unsigned short maxRetransmitTime() const;
77 unsigned short maxRetransmits() const; 77 unsigned short maxRetransmits() const;
78 String protocol() const; 78 String protocol() const;
79 bool negotiated() const; 79 bool negotiated() const;
80 unsigned short id() const; 80 unsigned short id() const;
81 String readyState() const; 81 String getReadyState() const;
Łukasz Anforowicz 2016/12/12 22:43:49 Not sure if this rename is required...
82 unsigned bufferedAmount() const; 82 unsigned bufferedAmount() const;
83 83
84 unsigned bufferedAmountLowThreshold() const; 84 unsigned bufferedAmountLowThreshold() const;
85 void setBufferedAmountLowThreshold(unsigned); 85 void setBufferedAmountLowThreshold(unsigned);
86 86
87 String binaryType() const; 87 String binaryType() const;
88 void setBinaryType(const String&, ExceptionState&); 88 void setBinaryType(const String&, ExceptionState&);
89 89
90 void send(const String&, ExceptionState&); 90 void send(const String&, ExceptionState&);
91 void send(DOMArrayBuffer*, ExceptionState&); 91 void send(DOMArrayBuffer*, ExceptionState&);
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 unsigned m_bufferedAmountLowThreshold; 141 unsigned m_bufferedAmountLowThreshold;
142 142
143 bool m_stopped; 143 bool m_stopped;
144 144
145 FRIEND_TEST_ALL_PREFIXES(RTCDataChannelTest, BufferedAmountLow); 145 FRIEND_TEST_ALL_PREFIXES(RTCDataChannelTest, BufferedAmountLow);
146 }; 146 };
147 147
148 } // namespace blink 148 } // namespace blink
149 149
150 #endif // RTCDataChannel_h 150 #endif // RTCDataChannel_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698