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

Unified Diff: third_party/WebKit/Source/modules/mediastream/RTCDTMFToneChangeEvent.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/mediastream/RTCDTMFToneChangeEvent.h
diff --git a/third_party/WebKit/Source/modules/mediastream/RTCDTMFToneChangeEvent.h b/third_party/WebKit/Source/modules/mediastream/RTCDTMFToneChangeEvent.h
index c93cb18e7cd792f9cbf565cd30b6e9bd338baf8a..176618994e83286e0674f51407ec4e1878fb64ac 100644
--- a/third_party/WebKit/Source/modules/mediastream/RTCDTMFToneChangeEvent.h
+++ b/third_party/WebKit/Source/modules/mediastream/RTCDTMFToneChangeEvent.h
@@ -37,9 +37,9 @@ class RTCDTMFToneChangeEvent final : public Event {
public:
~RTCDTMFToneChangeEvent() override;
- static PassRefPtrWillBeRawPtr<RTCDTMFToneChangeEvent> create();
- static PassRefPtrWillBeRawPtr<RTCDTMFToneChangeEvent> create(const String& tone);
- static PassRefPtrWillBeRawPtr<RTCDTMFToneChangeEvent> create(const AtomicString& type, const RTCDTMFToneChangeEventInit& initializer);
+ static RawPtr<RTCDTMFToneChangeEvent> create();
+ static RawPtr<RTCDTMFToneChangeEvent> create(const String& tone);
+ static RawPtr<RTCDTMFToneChangeEvent> create(const AtomicString& type, const RTCDTMFToneChangeEventInit& initializer);
const String& tone() const;

Powered by Google App Engine
This is Rietveld 408576698