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

Unified Diff: third_party/WebKit/Source/modules/webmidi/MIDIAccess.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/MIDIAccess.h
diff --git a/third_party/WebKit/Source/modules/webmidi/MIDIAccess.h b/third_party/WebKit/Source/modules/webmidi/MIDIAccess.h
index d3134d5cf62c453a9e269e5cf6f06fd266f35c0c..acc04a0fac8bdfdb3ca8389942ab33289b85c013 100644
--- a/third_party/WebKit/Source/modules/webmidi/MIDIAccess.h
+++ b/third_party/WebKit/Source/modules/webmidi/MIDIAccess.h
@@ -52,7 +52,7 @@ class MIDIOutputMap;
class MIDIAccess final : public RefCountedGarbageCollectedEventTargetWithInlineData<MIDIAccess>, public ActiveScriptWrappable, public ActiveDOMObject, public MIDIAccessorClient {
REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(MIDIAccess);
DEFINE_WRAPPERTYPEINFO();
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(MIDIAccess);
+ USING_GARBAGE_COLLECTED_MIXIN(MIDIAccess);
public:
static MIDIAccess* create(PassOwnPtr<MIDIAccessor> accessor, bool sysexEnabled, const Vector<MIDIAccessInitializer::PortDescriptor>& ports, ExecutionContext* executionContext)
{
@@ -66,7 +66,7 @@ public:
MIDIOutputMap* outputs() const;
EventListener* onstatechange();
- void setOnstatechange(PassRefPtrWillBeRawPtr<EventListener>);
+ void setOnstatechange(RawPtr<EventListener>);
bool sysexEnabled() const { return m_sysexEnabled; }

Powered by Google App Engine
This is Rietveld 408576698