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

Unified Diff: third_party/WebKit/Source/modules/webmidi/MIDIInput.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/webmidi/MIDIInput.h
diff --git a/third_party/WebKit/Source/modules/webmidi/MIDIInput.h b/third_party/WebKit/Source/modules/webmidi/MIDIInput.h
index 1c780f074e5e344a416181fb94d3928c75385964..abfdff3fa8b5eaf4e26d51ebf8eb1343225a6e87 100644
--- a/third_party/WebKit/Source/modules/webmidi/MIDIInput.h
+++ b/third_party/WebKit/Source/modules/webmidi/MIDIInput.h
@@ -46,7 +46,7 @@ public:
~MIDIInput() override { }
EventListener* onmidimessage();
- void setOnmidimessage(PassRefPtrWillBeRawPtr<EventListener>);
+ void setOnmidimessage(RawPtr<EventListener>);
// EventTarget
const AtomicString& interfaceName() const override { return EventTargetNames::MIDIInput; }
@@ -57,7 +57,7 @@ public:
DECLARE_VIRTUAL_TRACE();
protected:
- bool addEventListenerInternal(const AtomicString& eventType, PassRefPtrWillBeRawPtr<EventListener>, const EventListenerOptions&) override;
+ bool addEventListenerInternal(const AtomicString& eventType, RawPtr<EventListener>, const EventListenerOptions&) override;
private:
MIDIInput(MIDIAccess*, const String& id, const String& manufacturer, const String& name, const String& version, MIDIAccessor::MIDIPortState);
« no previous file with comments | « third_party/WebKit/Source/modules/webmidi/MIDIController.cpp ('k') | third_party/WebKit/Source/modules/webmidi/MIDIInput.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698