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

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

Issue 1773813007: blink: Rename modules/ method to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-modules: rebase-fixes Created 4 years, 9 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
92 // EventTarget 92 // EventTarget
93 const AtomicString& interfaceName() const override; 93 const AtomicString& interfaceName() const override;
94 ExecutionContext* executionContext() const override; 94 ExecutionContext* getExecutionContext() const override;
95 95
96 // Oilpan: need to eagerly finalize m_handler 96 // Oilpan: need to eagerly finalize m_handler
97 EAGERLY_FINALIZE(); 97 EAGERLY_FINALIZE();
98 DECLARE_VIRTUAL_TRACE(); 98 DECLARE_VIRTUAL_TRACE();
99 99
100 // WebRTCDataChannelHandlerClient 100 // WebRTCDataChannelHandlerClient
101 void didChangeReadyState(WebRTCDataChannelHandlerClient::ReadyState) overrid e; 101 void didChangeReadyState(WebRTCDataChannelHandlerClient::ReadyState) overrid e;
102 void didDecreaseBufferedAmount(unsigned) override; 102 void didDecreaseBufferedAmount(unsigned) override;
103 void didReceiveStringData(const WebString&) override; 103 void didReceiveStringData(const WebString&) override;
104 void didReceiveRawData(const char*, size_t) override; 104 void didReceiveRawData(const char*, size_t) override;
(...skipping 21 matching lines...) Expand all
126 WillBeHeapVector<RefPtrWillBeMember<Event>> m_scheduledEvents; 126 WillBeHeapVector<RefPtrWillBeMember<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