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

Unified Diff: Source/modules/webmidi/MIDIAccess.h

Issue 205693004: Oilpan: Fix build after MIDI changes. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
« no previous file with comments | « no previous file | Source/modules/webmidi/MIDIAccess.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webmidi/MIDIAccess.h
diff --git a/Source/modules/webmidi/MIDIAccess.h b/Source/modules/webmidi/MIDIAccess.h
index df3f7c1021e7a73d683a778a9196a1a926435270..9e09a9d23a84410d4e5c1a56f7593f81223d0d76 100644
--- a/Source/modules/webmidi/MIDIAccess.h
+++ b/Source/modules/webmidi/MIDIAccess.h
@@ -102,7 +102,7 @@ private:
void permissionDenied();
void resolve();
- void reject(PassRefPtr<DOMError>);
+ void reject(PassRefPtrWillBeRawPtr<DOMError>);
void resolveNow();
void rejectNow();
// Called when the promise is resolved or rejected.
@@ -118,7 +118,7 @@ private:
bool m_sysExEnabled;
AsyncMethodRunner<MIDIAccess> m_asyncResolveRunner;
AsyncMethodRunner<MIDIAccess> m_asyncRejectRunner;
- RefPtr<DOMError> m_error;
+ RefPtrWillBeMember<DOMError> m_error;
};
} // namespace WebCore
« no previous file with comments | « no previous file | Source/modules/webmidi/MIDIAccess.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698