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

Unified Diff: third_party/WebKit/Source/modules/webmidi/MIDIConnectionEvent.h

Issue 1864243004: Remove RawPtr from Source/modules Part 2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/webmidi/MIDIConnectionEvent.h
diff --git a/third_party/WebKit/Source/modules/webmidi/MIDIConnectionEvent.h b/third_party/WebKit/Source/modules/webmidi/MIDIConnectionEvent.h
index 0daa1dc3de0cad34f999d90d59f954b574d5f975..01457f289f422aa6a526830af0327e366379a41d 100644
--- a/third_party/WebKit/Source/modules/webmidi/MIDIConnectionEvent.h
+++ b/third_party/WebKit/Source/modules/webmidi/MIDIConnectionEvent.h
@@ -41,17 +41,17 @@ class MIDIConnectionEventInit;
class MIDIConnectionEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- static RawPtr<MIDIConnectionEvent> create()
+ static MIDIConnectionEvent* create()
{
return new MIDIConnectionEvent();
}
- static RawPtr<MIDIConnectionEvent> create(MIDIPort* port)
+ static MIDIConnectionEvent* create(MIDIPort* port)
{
return new MIDIConnectionEvent(port);
}
- static RawPtr<MIDIConnectionEvent> create(const AtomicString& type, const MIDIConnectionEventInit& initializer)
+ static MIDIConnectionEvent* create(const AtomicString& type, const MIDIConnectionEventInit& initializer)
{
return new MIDIConnectionEvent(type, initializer);
}

Powered by Google App Engine
This is Rietveld 408576698