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

Side by Side Diff: third_party/WebKit/Source/modules/webmidi/MIDIConnectionEvent.h

Issue 2217763003: Remove Blink-WebKit-only document.createEvent strings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 3 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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 23 matching lines...) Expand all
34 #include "modules/EventModules.h" 34 #include "modules/EventModules.h"
35 #include "modules/webmidi/MIDIPort.h" 35 #include "modules/webmidi/MIDIPort.h"
36 36
37 namespace blink { 37 namespace blink {
38 38
39 class MIDIConnectionEventInit; 39 class MIDIConnectionEventInit;
40 40
41 class MIDIConnectionEvent final : public Event { 41 class MIDIConnectionEvent final : public Event {
42 DEFINE_WRAPPERTYPEINFO(); 42 DEFINE_WRAPPERTYPEINFO();
43 public: 43 public:
44 static MIDIConnectionEvent* create()
45 {
46 return new MIDIConnectionEvent();
47 }
48
49 static MIDIConnectionEvent* create(MIDIPort* port) 44 static MIDIConnectionEvent* create(MIDIPort* port)
50 { 45 {
51 return new MIDIConnectionEvent(port); 46 return new MIDIConnectionEvent(port);
52 } 47 }
53 48
54 static MIDIConnectionEvent* create(const AtomicString& type, const MIDIConne ctionEventInit& initializer) 49 static MIDIConnectionEvent* create(const AtomicString& type, const MIDIConne ctionEventInit& initializer)
55 { 50 {
56 return new MIDIConnectionEvent(type, initializer); 51 return new MIDIConnectionEvent(type, initializer);
57 } 52 }
58 53
59 MIDIPort* port() { return m_port; } 54 MIDIPort* port() { return m_port; }
60 55
61 const AtomicString& interfaceName() const override { return EventNames::MIDI ConnectionEvent; } 56 const AtomicString& interfaceName() const override { return EventNames::MIDI ConnectionEvent; }
62 57
63 DECLARE_VIRTUAL_TRACE(); 58 DECLARE_VIRTUAL_TRACE();
64 59
65 private: 60 private:
66 MIDIConnectionEvent()
67 : Event(EventTypeNames::statechange, false, false) { }
68
69 MIDIConnectionEvent(MIDIPort* port) 61 MIDIConnectionEvent(MIDIPort* port)
70 : Event(EventTypeNames::statechange, false, false) 62 : Event(EventTypeNames::statechange, false, false)
71 , m_port(port) { } 63 , m_port(port) { }
72 64
73 MIDIConnectionEvent(const AtomicString&, const MIDIConnectionEventInit&); 65 MIDIConnectionEvent(const AtomicString&, const MIDIConnectionEventInit&);
74 66
75 Member<MIDIPort> m_port; 67 Member<MIDIPort> m_port;
76 }; 68 };
77 69
78 } // namespace blink 70 } // namespace blink
79 71
80 #endif // MIDIConnectionEvent_h 72 #endif // MIDIConnectionEvent_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698