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

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

Issue 176853004: Oilpan: move core/fileapi to oilpan's heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased Created 6 years, 10 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 | « Source/modules/serviceworkers/ServiceWorkerError.h ('k') | Source/modules/webmidi/MIDIAccessPromise.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webmidi/MIDIAccessPromise.h
diff --git a/Source/modules/webmidi/MIDIAccessPromise.h b/Source/modules/webmidi/MIDIAccessPromise.h
index e791013283e0d9a92a1a2a3f7cec9f526ee7cf37..fc63eb807ef23a124b80c31a85f15fa408e6a414 100644
--- a/Source/modules/webmidi/MIDIAccessPromise.h
+++ b/Source/modules/webmidi/MIDIAccessPromise.h
@@ -61,7 +61,7 @@ public:
MIDIOptions* options() { return m_options.get(); }
void fulfill();
- void reject(PassRefPtr<DOMError>);
+ void reject(PassRefPtrWillBeRawPtr<DOMError>);
void then(PassOwnPtr<MIDISuccessCallback>, PassOwnPtr<MIDIErrorCallback>);
@@ -83,7 +83,7 @@ private:
OwnPtr<MIDISuccessCallback> m_successCallback;
OwnPtr<MIDIErrorCallback> m_errorCallback;
OwnPtr<MIDIOptions> m_options;
- RefPtr<DOMError> m_error;
+ RefPtrWillBeMember<DOMError> m_error;
RefPtrWillBeMember<MIDIAccess> m_access;
};
« no previous file with comments | « Source/modules/serviceworkers/ServiceWorkerError.h ('k') | Source/modules/webmidi/MIDIAccessPromise.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698